git常用指令

2022-08-10 06:18:16 字數 560 閱讀 4261

1、git init

初始化乙個本地倉庫

2、git clone 遠端倉庫裡url

從遠端倉庫轉殖專案到本地

3、git add

git add 檔名/目錄名 將指定變動的檔案或目錄提交至快取區

git add . 將所有變動的內容提交至快取區

4、git commit -m '提交內容描述'

將變動從快取區提交至本地倉庫

5、git push

將變動從本地倉庫提交到遠端倉庫

6、git pull

抓取遠端倉庫的內容覆蓋本地倉庫

7、git fetch

查詢比對本地倉庫與遠端倉庫的差異

8、git log

檢視本地倉庫的修改記錄

9、git reset --hard commitid(可以在git log中查詢)

回退至指定某次提交,本地**也會回退

10、git reset --soft commitid(可以在git log中查詢)

回退至指定某次提交,只是從本地倉庫回退至快取區,本地**不變,可以再次提交

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...