目錄
撤銷刪改
刪除檔案
遠端倉庫
新增遠端庫
從遠端庫轉殖
分支管理
解決衝突
分支管理策略
bug分支
場景1:當你改亂了工作區某個檔案的內容,想直接丟棄工作區的修改時,用命令
git checkout -- file
場景2:當你不但改亂了工作區某個檔案的內容,還新增到了暫存區時,想丟棄修改,分兩步,
第一步用命令
git reset head 就回到了場景1,第二步按場景1操作
rm file //刪除檔案git rm file //刪除檔案
如果還未git commit可以通過git checkout -- file 恢復
$ ssh-keygen -t rsa -c "[email protected]"//建立ssh-key,複製到github上
git remote add origin git@server-name:path/repo-name.git //新增遠端庫
//git@server-name:path/repo-name.git 從github上覆制過來
git push -u origin master //推送至倉庫
git push origin master
git clone [email protected]:michaelliao/gitskills.git
檢視分支:git branch
建立分支:git branch //name 分支名
切換分支:git checkout //
注:先切換到你要最終合併到的分支(主支),之後合併,其中的name為被合併的分支
如: a b c 三個分支,先將 c分支合併到a上,則,切換到a,合併c
刪除分支: git branch -d
遇到衝突,手動修改,再上傳
git log --graph --pretty=oneline --abbrev-commit//檢視分支合併圖
git merge --no-ff -m "merge with no-ff" [dev] // 禁用fast forward
//本次合併要建立乙個新的commit,所以加上-m引數,把commit描述寫進去
當前工作可能未完成,但需要進行一項bug的修改,可以先儲存當前的狀態,新建乙個分支,之後在恢復。
git stash //儲存當前現場
git stash list
git stash drop //刪除
git stash pop //恢復並刪除
常用命令 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...