1. 程式人生 > 實用技巧 >Git 實用命令

Git 實用命令

一、同步、提交程式碼

同步

同步程式碼:
git fetch  
git pull origin  master

提交 

提交步驟:
git status   確認修改的檔案內容;

git add --all   提交修改檔案內容到暫存區;

git commit -am  " "   提交到本地;

例如: git commit -am '

ZK_RXXX_RK3288_ANDROID5.1
1.修改錄音聲音小;
2.修改uart0為uart1,uart1為uart4;
3.修復休眠喚醒,概率性無作用;
4.修改README.md
'

git push origin  master   提交到伺服器;

  

二、回退已提交版本

git reset<版本號>   回退到指定版本。指定版本號可通過git log檢視,注:不需要攜帶--hard,可使用--soft
git stash           暫存修改
git push  --force   強制push 到遠端倉庫嗎,指定版本往後的commit均被刪除
git stash pop       釋放暫存的修改
git add.            暫存所有修改
git commit -m "message"   提交已暫存的檔案
git push origin master    推送至遠端倉庫

例項

三、檢視某節點詳細資訊

git show <版本號> --stat
git show 2159d8788ec5959aabff21f32c3cb720570f445b --stat