一般操作流程:工作區-(暫存區-本地庫)--拉取更新本地-推送到遠端庫一. 基本命令
二. 增刪改查
//head:指當前分支的最新提交點
//回退上乙個版本
git reset --hard head^
//回退到指定版本
git reset --hard 撤銷修改
git diff 《檔案》
git diff head -- 《檔案》
git diff head --cached 《檔案》
三. 分支管理
3.1head:指當前分支的最新提交點
合併分支到當前分支
3.2 衝突標記方式
3.3 git flow 管理策略
四. 標籤管理
與分支操作類似git push origin --tags
刪除本地標籤
git push origin :refs/tags/
五. 遠端倉庫
5.1 倉庫相關
使用示例:
git clone [email protected]:jasonhww/test.git
使用示例:
git remote add origin [email protected]: jasonhww /test.git
/*如果乙個本地庫需要關聯多個遠端庫,那麼就用不同名稱標識不同遠端庫位址.
*推送的時候就用對應的倉庫名.
git remote add github [email protected]: jasonhww /test.git
git remote add gitee [email protected]: jasonhww /test.git
git push github master
git push gitee master
使用示例:
git remote rm origin
5.2 分支相關
git push origin dev
git pull origin master
git fetch origin master
git checkout -b origin/
git branch --set-upstream origin/
5.3 rebase
六. 貯藏操作
* --global user.name jasonhww
* --global user.email [email protected]
配置別名語法git config --global alias.st status
git config --global alias.unstage 'reset head'
八. 忽略檔案
新增.gitignore檔案到版本庫中.
九. 其他
乙個github允許可以新增多個key, 但是乙個key只能用於乙個github賬號. 此時需要通過配置檔案配置多ssh的key對應不同github賬號.
常用命令 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...