**工作區–>執行git add–>暫存區(臨時儲存)–>執行git commit–>本地庫(歷史版本)
一、新建**庫
$ git init
$ git init [project-name]
$ git clone [url]
二、配置
$ git config --list
$ git config -e [–global]
$ git config [–global] user.email 「[email address]」
$ git config [–global] user.name 「[name]」
三、增加/刪除檔案
$ git add [file1] [file2]……
$ git add [dir]
$ git add .
$ git add -p
$ git rm [file1] [file2]……
$ git rm --cached [file]
$ git mv [file-original] [file-renamed]
四、**提交
$ git commit -m [message]
$ git commit [file1] [file2] … -m [message]
$ git commit -a
$ git commit --amend -m [message]
$ git commit --amend [file1] [file2] …
五、分支
$ git branch
$ git branch -a
$ git branch [branch-name]
$ git checkout -b [branch]
$ git branch [branch] [commit]
$ git branch --track [branch] [remote-branch]
$ git checkout [branch-name]
$ git checkout -
$ git branch --set-upstream [branch] [remote-branch]
$ git merge [branch]
$ git cherry-pick [commit]
$ git branch -d [branch-name]
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]
六、標籤
$ git tag
$ git tag [tag]
$ git tag [tag] [commit]
$ git tag -d [tag]
$ git push origin :refs/tags/[tagname]
$ git show [tag]
$ git push [remote] [tag]
$ git push [remote] --tags
$ git checkout -b [branch] [tag]
七、檢視資訊
$ git status
$ git log
$ git log --stat
$ git log -s [keyword]
$ git log [tag] head --pretty=format:%s
$ git log [tag] head --grep feature
$ git log --follow [file]
$ git whatchanged [file]
$ git log -p [file]
$ git log -5 --pretty --oneline
$ git shortlog -sn
$ git blame [file]
$ git diff
$ git diff --cached [file]
$ git diff head
$ git diff [first-branch]…[second-branch]
$ git diff --shortstat 「@」
$ git show [commit]
$ git show --name-only [commit]
$ git show [commit]:[filename]
$ git reflog
八、遠端同步
$ git fetch [remote]
$ git remote -v
$ git remote show [remote]
$ git remote add [shortname] [url]
$ git pull [remote] [branch]
$ git push [remote] [branch]
$ git push [remote] --force
$ git push [remote] --all
九、撤銷
$ git checkout [file]
$ git checkout [commit] [file]
$ git checkout .
$ git reset [file]
$ git reset --hard
$ git reset [commit]
$ git reset --hard [commit]
$ git reset --keep [commit]
$ git revert [commit]
$ git stash
$ git stash pop
十、其他
$ git archive
專案管理工具之Git
git安裝 雙擊一路下來,根據個人喜好,修改安裝路徑 設定git的user name和email git config global user.name test git config global user.email test bldz.com 生成ssh金鑰過程 1.檢視是否已經有了ssh金鑰...
IT專案管理工具
一 完善的專案管理工具,需要具有如下的管理模組 1.需求管理 專案的需求變更,跟蹤,控制 2.資源管理 專案的可利用的資源 人力,物力,財力 3.計畫管理 包括成員管理和許可權分配,日程排定,工作時間管理,里程碑設定 4.進度管理 日曆,工作流,專案路線圖和gantt圖 5.測試管理 專案軟體缺陷b...
git版本管理工具
以svn為代表的集中式版本控制系統,只有乙個 庫,開發的時候需要先從 庫獲取到最新的版本,然後開始幹活,幹完活之後提交到 伺服器。而git是一種分布式管理控制,每個使用 庫的機器上面都可以有自己的本地 庫,如果多人協作開發的話,只需要用一台伺服器作為中轉,來同步不同使用者之間的本地庫就行了,這樣在沒...