Git常用命令

2021-08-14 07:21:28 字數 1338 閱讀 7717

git status  #當前目錄檔案狀態

git add

#新增檔案到 暫存空間

git commit #提交修改

# 分支

git branch -r #檢視遠端分支

git fetch origin --prune #更新遠端分支

git可以將使用者名稱,密碼和倉庫鏈結儲存在硬碟中,而不用在每次push的時候都輸入密碼。

儲存密碼到硬碟一條命令就可以

$ git config credential.helper store

git push的時候輸入一次使用者名稱和密碼就會被記錄

參考

$ man git | grep -c

5 password

$ man git-credential

-store

這樣儲存的密碼是明文的,儲存在使用者目錄~的.git-credentials檔案中

$ file ~/.git-credentials

$ cat ~/.git-credentials

#feature 上提交了3次,commit_id1,commit_id2,commit_id3

$ git checkout master #切換到master分支

$ git cherry-pick commit_id1 commit_id3 #兩次提交之間沒有merge操作,不然會無法完成

$ git remote add origin ***.git

$ git config credential.helper store

$ git pull origin master

$ git add .

$ git commit -m 'xx'

$ git push origin master

我們經常要檢視對工作目錄的內容作了哪些修改,以確定這些修改是否合理。

$ git diff --cached // 檢視將要提交的內容,這時候的比較的是:暫存區 vs head

$ git diff// 當前你所做的,但是沒有提交到暫存區的修改,也就是這時候比較:前工作目錄 vs head

$ git diff file

// 比較單個檔案

$ git diff commit1:path/file commit2:path/file

// 比較不同提交中的同乙個檔案

$ git diff --stat // 檢視統計資訊

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