回滾回滾某次提交
刪除某次提交
合併建立刪除分支
建立刪除標籤
git config --global user.name "name" // 設定使用者名稱
git config --global user.email "email" // 設定密碼
git config --global user.name // 檢視使用者名稱
git config --global user.email // 檢視密碼
git init // 初始化
git clone // 轉殖
git remote add origin // 設定本地使用者名別名
git status // 檢視狀態
git add . // 將檔案新增到暫存區
git commit -m "描述資訊" // 將修改提交到暫存區
git log // 檢視日誌資訊
git push origin master // 提交**到master分支
git pull origin master // 更新master分支**
git fetch origin remotename
git checkout -b localname origin/remotename
git checkout git checkout .
git add *
git status
git reset head // 取消暫存
git reset head // 取消暫存
git checkout // 撤銷修改
git add git commit --amend -m "描述內容"
git log git checkout
git revert head
git push origin master
git reset --hard head^
git push origin master -f
區別:
revert:放棄指定提交的修改,但是會生成一次新的提交,需要填寫提交注釋,以前的歷史記錄都在;
reset: 將head指標指導指定提交,歷史記錄中不會出現放棄的提交記錄。
git log
git revert commitid
git rebase -i "commitid"^
(branch) git pull // 進入分支,更新分支**
(branch) git checkout master // 切換主幹
(master) git merge branch --squash // 在主幹上合併分支branch
(master) git commit -m "提交資訊" // 提交合併後的**
(master) git push // 將**推送到遠端倉庫
(master) git pull // 進入主幹,更新主幹**
(master) git checkout branch // 切換分支
(branch) git merge master --squash // 在分支上合併主幹
(branch) git commit -m "提交資訊" // 提交合併後的**
(branch) git push // 將**推送到遠端倉庫
git reset --hard fetch_head
git merge --abort
git checkout master // 切換到其他分支
git branch -d
// 刪除分支
git checkout master
git pull
git checkout -b
// 建立分支
git tag // 建立本地tag
git push origin // 推送到遠端倉庫
git push origin --tags 推送多個
git tag -a // 以特定提交id建立tag
git show git tag // 檢視本地所有
git ls-remote --tags origin
git tag -d git push origin --delete
git checkout -b
git checkout // 切換標籤
git flow init // 初始化
git flow feature start myfeature // 開始新feature:
git flow feature publish myfeature // publish乙個feature(也就是push到遠端):
git flow feature pull origin myfeature // 獲取publish的feature
git flow feature finish myfeature // 完成乙個feature
git flow release start release [base] // 開始乙個release
git flow release publish release // publish乙個release
git flow release finish release // 發布release,別忘了git push --tags
git flow hotfix start version [basename] // 開始乙個hotfix
git flow hotfix finish version // 發布乙個hotfix
常用命令 Git 常用命令大全
安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...
git 常用命令
檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...
git常用命令
詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...