Linux Git常用 操作命令

2021-09-10 04:47:51 字數 626 閱讀 7634

【git commond】

1.git checkout 檢視本地所有修改

2.git checkout -- 檔案路徑 丟棄當前選中檔案

3.git checkout . 丟棄本地所有修改

4.git branch 檢視本地分支

5.git checkout master 切換到master分支

6.git branch -d hongchangfirst 刪除本地某個分支

7.git add file 暫存檔案

8.git commit -m 「message」 提交的是暫存檔案

9.git log --author=「author」 檢視某個人所有提交

10.撤銷git pull

(1)執行git reflog獲取你自己的commit id

(2)git reset –hard id(id 為當時提交的commit id)

11.合併a分支的提交到另b分支

(1)git log --author=「author」獲取你在a分支的提交記錄並記錄commit id

(2)git checkout b 切換到b分支

(3)git cherry-pick id,將a分支為id的commit提交到b分支

Linux GIT命令入門

git init 初始化版本庫 git clone git github.com git 把遠端倉庫轉殖到本地 git status 檢視倉庫狀態 git log 檢視提交資訊 git diff 檢視暫存區與工作區的檔案差異詳情 git diff cached 檢視暫存區與本地倉庫檔案差異詳情 gi...

Linux git 17 操作標籤

用到的新命令 1.git tag d 標籤 刪除指定的標籤 2.git push origin 標籤 推送指定標籤到遠端 git push origin tags 推送所有標籤 3.git push origin refs tags 標籤 從遠端刪除標籤 1.刪除指定標籤 root vm 0 11 ...

操作命令 git git常用操作命令

1 只刪遠端倉庫檔案,但不刪本地檔案 把 iml加到 gitignore 裡面忽略掉 2.git rm r cached iml r 是遞迴的意思 當最後面是資料夾的時候有用 3.git add a 4.git commit m ignore xml 5.git push 2 檢視所有版本提交記錄,...