1. 程式人生 > >平時自己常用的git指令

平時自己常用的git指令

show 日誌 ash add checkout rsa var 列表 增刪

增刪改查

創建標簽
$ git tag -a v1.4 -m ‘my version 1.4‘
用 -a (譯註:取 annotated 的首字母)指定標簽名字即可
-m 選項則指定了對應的標簽說明
輕量級標簽
git tag v1.4
查看標簽
git show v1.4
補充標簽
git tag -a v1.2 9fceb02
推送標簽
git push origin v1.5
git push origin --tags
刪除標簽
git tag -d v1.4
切換標簽
git checkout v0.21

查看當前Git環境的設置:
$ git config -l

git var -l

儲藏
儲藏當前狀態:
git stash apply
git stash save "work in progress for foo feature"
儲藏列表
git stash list
應用某次儲藏
git stash apply stash@{1}
清空儲藏
git stash clear‘則是用來清空這個隊列.


本地與遠程github關聯
ssh-keygen -t rsa -C "[email protected]" ,生成自己的公鑰與私鑰

git init
git add *
git commit -m "日誌"
git remote add origin [email protected]
git push -u orgin master

平時自己常用的git指令