关联本地文件夹到 GitLab 项目

  • 关联本地文件夹到 GitLab 项目的 dev 分支:
  1. rm -rf .git
  2. git init
  3. git remote add origin
  4. git pull
  5. git checkout dev
  6. git add .
  7. git commit -m 'm'
  8. git push

猜你喜欢

转载自www.cnblogs.com/cag2050/p/9120955.html