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 --隐藏文件隐藏
-
git add .
-
git commit -m "commit info"
-
git remote add origin git@github.com:yourusername/test.git
7.git pull --rebase origin master
8.git push -u origin master
大功告成!!!
网友评论