1. clone
git clone -b 分支名 https:***.git(分支倉庫位址) 【本地目錄名】
其他常用引數: --depth 1
2. checkout
git checkout 分支名
可清除本地改動
3. reset
git reset --hard origin/master
取消本地改動
4. fetch & merge
git fetch #取回所有分支更新
git fetch origin master #從遠端主機origin的master分支
git merge 分支a #將分支a合併到當前分支
5. git commit
git commit -m "the commit message"
-a : 會先把改動的檔案git add 進來
6. git push
git push origin master #將本地master分支推動到遠端origin的master分支上,省略本地分支,相當於刪除遠端分支
常用Git命令
下面是我在開發中常用的git命令 1.配置git git config global add user.email git config global add user.name 2.建立新的專案 git init git add git commit a m git remote add orig...
常用Git命令
附上一些git的常見命令 gitremote add origin git github.com myaccount myproject.git git push u origin master gitinit 建立repository git 命令 help 檢視幫助命令 touchfilenam...
常用Git命令
建立管理倉庫 git initadd和commit git add readme.txt git commit m wrote a readme file 簡略版log git log pretty oneline abbrev commit當前狀態 git status撤銷更改 git check...