用命令 上传项目到gitLab

1.在gitLab 创建好项目

2.配置好 ssh key

3.cd到你建好的项目 输入git init
有提示(Reinitialized existing Git repository in /Users..)
需要把你项目中git隐藏文件删掉 并重新 git init
defaults write com.apple.finder AppleShowAllFiles -bool true --显示文件隐藏
defaults write com.apple.finder AppleShowAllFiles -bool false --隐藏文件隐藏

  1. git add .

  2. git commit -m "commit info"

  3. git remote add origin [email protected]:yourusername/test.git

7.git pull --rebase origin master

8.git push -u origin master

大功告成!!!

你可能感兴趣的:(用命令 上传项目到gitLab)