git常用指令

2021-08-12 00:15:52 字數 667 閱讀 3095

1. git log

檢視log日誌

2. git diff

檢視未提交(commit)的修改內容

3. git show

檢視已經提交(commit)的修改內容

4. git clone git@deren/test/test.git  deren-test

轉殖**倉庫中的test**庫,並重命名為deren-test

5. git pull

拉取遠端倉庫的最新修改到本地

6. git commit -a

提交所有修改到本地倉庫

7. git push orign

將本地倉庫推向遠端倉庫

8. git tag ******

為這一次的修改打tag 號***x

9. git push orign  ***xx

將所打的tag推到遠端倉庫

10. git reset --hard *********************x

將本地**倉庫回退到指定的commit 號******x

11. git branch

檢視當前本地倉庫所在的分支

12. git branch -a

檢視所有原創分支

13. git branch -b ***

建立新的分支***

Git 常用指令

首先需要建立乙個repo,這是cd到資料夾底下,然後init。git init 在檔案系統裡面的檔案如果不新增到git的repo裡面,不會自動被git辨識,需要手動新增,這也是初始化repo是必須要做的事。git add documentation txt git add git sh 刪除檔案,分...

git常用指令

git 常用命令 git init here 建立本地倉庫 repository 將會在資料夾下建立乙個 git 資料夾,git 資料夾裡儲存了所有的版本資訊 標記等內容 git remote add origin git github.com winter1991 helloworld.git 把...

git常用指令

git config global user.name robbin git config global user.email fankai gmail.com git config global color.ui true git config global alias.co checkout g...