一般操作:
檢視狀態git status
提交所有檔案
git add .
git commit -m '
mesg 備註
'上傳遠端**倉庫
git push
拉取遠端**倉庫更新本地**
git pull
關於分支操作:
建立新的分支git brach branchname
切換到新的分支
git checkout branchname
git add .
git commit -m '
msg 備註
'建立遠端分支
git push origin branchname
合併分支(現在處於非branchname 分支上)
git merge branchname
刪除遠端分支
git branch -r -d origin/branchname
刪除本地分支(需要在其他支幹上操作)
git branch -d branchname
強制刪除本地分支(當現在處於branchname分支上或這個分支還有合併的時候,就需要強制刪除)
git branch -d branchname
檢視本地分支
git branch
檢視所有分支
git branch -a
檢視遠端分支
git branch -r
如果已經add .了,想要撤銷,
git reset
4、git commit -m '回滾project.pbxproj'
5、git pushok!
暫時只用到這麼多,先總結這麼多吧,
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...