git 常用命令

2021-10-24 18:38:25 字數 1416 閱讀 7202

自己工作中長用到的命令操作

git checkout -b dev 相當於 git branch dev + git checkout dev

git branch -d 分支名稱 刪除本地分支

git push --delete origin oldname 刪除遠端的舊分支

git branch 檢視本地分支

git branch -a 檢視當前分支

git branch -r 檢視所有分支

git branch -m oldname newname 本地分支重新命名

git push origin newname 將重新命名後的分支推送到遠端

git merge 分支名稱 合併目標分支**到當前分支

git status

git add 『檔名稱』 // 新增當前檔案

git add . // 新增所有

git commit -m 『日誌』

git push

git log

git log --pretty=oneline

git reset head 工作區版本回退

git reset –-soft:回退到某個版本,只回退了commit的資訊,不會恢復到 index file一級。如果還要提交,直接commit即可;

git reset -–hard:徹底回退到某個版本,本地的原始碼也會變為上乙個版本的內容,撤銷的commit中所包含的更改被沖掉

git reset --hard head^ 回退到上乙個版本

git reset --hard hash 回退到指定版本

git push -f -u origin 分支名 所有內容都回撤完了 將回撤後的操作強制推送到遠端分支

git stash

git stash list

git stash pop

git 合併commit資訊 提交一次

git rebase -i 版本號

i進入編輯模式頁面 commit 合併可以使用 squash、fixup

pick 的意思是要會執行這個 commit

squash 的意思是這個 commit 會被合併到前乙個commit

fixup 放棄當前 commit 的注釋

git rebase --abort 取消這次rebase就行了

常用命令 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...