常用git指令

2021-09-24 04:24:50 字數 496 閱讀 8598

git init # 初始化乙個空白的倉庫

git add . # 把當前目錄中的**提交到快取區

git commit -m 『』 # 把快取區中的**提交到本地倉庫

git remote -v # 檢視當前倉庫的遠端伺服器資訊

git remote add 倉庫名 倉庫位址 # 新增遠端倉庫位址資訊

git remote rm 倉庫名 # 刪除遠端倉庫位址資訊

git pull 遠端倉庫名 分支名 # 拉取資料

git push 遠端倉庫名 分支名 # 推送

git checkout 分支名 # 切換到指定分支

git branch # 檢視當前的倉庫的分支資訊

git checkout -b 分支名 # 建立新的分支

git status # 檢視當前倉庫的狀態

git merge 分支名 # 合併指定的分支到當前分支

.gitignore 檔案可以指定不需要提交到版本管理的內容

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