創(chuàng)建SSH Key
ssh-keygen -t rsa -C "youremail@example.com"
本地創(chuàng)建倉庫操作
- 創(chuàng)建本地倉庫
git init
- 將文件添加進(jìn)Git
git add 文件名
git add . #將所有的文件全部添加到Git
- 提交
git commit -m "描述信息"
Git遠(yuǎn)程倉庫操作
- 查看遠(yuǎn)程倉庫
git remote -v
- 添加遠(yuǎn)程倉庫
git remote add 名稱 遠(yuǎn)程倉庫地址
git remote add origin git@git.coding.net:pgw1314/shells.git
- 推送的遠(yuǎn)程倉庫
git push 倉庫名 分支
git push origin master
- 更新遠(yuǎn)程倉庫
git pull 倉庫名 分支
git pull origin master
- 刪除遠(yuǎn)程倉庫
git remote remove 倉庫名稱
Git常見錯(cuò)誤
- 版本沖突
error: failed to push some refs to 'git@git.coding.net:pgw1314/Documents.git'
解決辦法
git pull --rebase origin master