costume GIT usage for me

weixin_33782386發表於2017-08-06

說明:僅需要了解基本操作,之後這些操作的基礎上逐個新增複雜操作。

1. 配置git

直接編輯 ~/.gitcofig 檔案即可!

2. 檢視git狀態

git status

3. 建立git

git init

3.2 git clone 通過克隆來建立

git clone git@github.com:username/myNCCL.git

注意:有些protocal是不能來push的
比如 https

4. 新增檔案到快取區

git add

5. 提交

git commit

6. 釋出

git push

7. 刪除

git rm : 此時原始檔與快取區的資料都刪除
git rm --eached 只刪除暫存區的

8. 恢復資料

git reset --head HEAD/碼

9.版本變換

git checkout NAME

還有待完善!

10.檢視commit的歷史記錄

git log --oneline
或者
glol oh my zsh 的快捷鍵

相關文章