git init
初始化git 倉庫
關聯:git remote add origin git倉庫位址
轉殖git**
git clone 要轉殖的位址
git clone --depth=1 要轉殖的位址 (這種clone方法只會clone最近一次)
git clone -b branch 要轉殖的位址
eg : git clone --depth=1 -b branch 要轉殖的位址
將**新增到本地倉庫:
git add . 新增所有
git add filename(具體檔案)
檢視新增的**到本地倉庫:
git status -s 檢視檔案新增狀態簡短形式表現
git status 檢視檔案新增狀態
檢視提交日誌
git log 刪除過的看不到
git reflog 檢視所有的歷史記錄
提交檔案到本地倉庫:
git commit -m "提交的功能資訊描述"
git commit -a -m "提交的功能資訊描述" -a 表示已新增過git add . 這個檔案
git diff
git stash 暫存本地分支內容到本地倉庫
git cherry-pick 提交編號 多個空格分隔 合併某乙個或某幾次提交
git cherry-pick 編號...編號 不包括左邊的但是包括右邊的
提交到git :
git push
git push -u origin branch_name
提交時可能伺服器需要拉取**:
git pull 其實相當於git fetch 和 git merge
git fetch 不會自動merge,只會拉取**
合併**:
git merge 分支名稱 一般先要切換到當前分支為master
切換分支to master:
git checkout master
git checkout -b branch_name 建立並切換到分支
檢視自己所在分支:
git branch
檢視遠端有哪些分支:
git branch -a
建立分支:
git branch 分支名稱
上線時建立標籤:
git tag -a v4.8.3 -m "上線訊息推送 & 7.0 適配"
將本地標籤推送到git:
git push origin v4.8.3
展示已上線的所有標籤:
git tag
找到歷史上線版本(一般為master):
git checkout -b tag_name
刪除無用快取
git rm -r --cached
回滾到指定的版本
git reset --hard e377f60e28c8b84158(上一次的提交id)
強制提交
git push -f origin master
git pull相比git fetch相當於是從遠端獲取最新版本到本地,但不會自動merge
獲取遠端分支
git remote -v
用遠端分支強制覆蓋本地分支
git pull origin master
git reset --hard fetch_head
將最近連續幾次提交合併成一次提交
git rebase -i head~4 表示最近4次提交合併成乙個提交,
然後git push -f 提交即可
p,pick:保留該commit(縮寫:p)
r,reword:保留該commit,但我需要修改該commit的注釋(縮寫:r)
e,edit:保留該commit, 但我要停下來修改該提交(不僅僅修改注釋)(縮寫:e)
s,squash:將該commit和前乙個commit合併(縮寫:s)
f,fixup:將該commit和前乙個commit合併,但我不要保留該提交的注釋資訊(縮寫:f)
x,exec:執行shell命令(縮寫:x)
d,drop:我要丟棄該commit(縮寫:d)
常用命令 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...