git --version //檢視git的版本資訊
git config --global user.name //獲取當前登入的使用者
git config --global user.email //獲取當前登入使用者的郵箱
複製**
git --version //檢視git的版本資訊
git config --global user.name //獲取當前登入的使用者
git config --global user.email //獲取當前登入使用者的郵箱
複製**
mkdir nodejs //建立資料夾nodejs
cd nodejs //切換到nodejs目錄下
複製**
touch .gitignore //不需要伺服器端提交的內容可以寫到忽略檔案裡
/*.git
.idea
*/檢視目錄 ls -al
複製**
echo
"hello git"
index.html //將'hello git' 寫入到index.html中
檢視檔案內容 cat index.html
複製**
- 1、提交**到本地庫中
> git commit -m '描述內容'
- 2、拉取該分支下的內容,與自己在本地庫改寫的合併
> git pull origin 《分支名稱》
- 3、提交**到github上
- git push origin 《分支名稱》
複製**
- 1、檢視所有分支(其中帶 * 號的:當前使用分支)
> git branch -a
- 2、切換分支
> git checkout 《分支名稱》
- 3、合併某分支到當前分支:
> git merge 《分支名稱》 : 把develop 合併到master–> git merge develop
- 4、提交合併的** :
> git pull :拉取當前倉庫的**
> git push origin 《分支名稱》 合併提交 到主分支上
複製**
- 用到的git命令:
- 1、建立分支:
> git branch 《分支名稱》
- 2、檢視所有分支
> git branch -a
- 3、切換分支
> git checkout 《分支名稱》
- 4、合併某分支到當前分支:
> git merge 《分支名稱》
- 5、建立+切換分支:
> git checkout -b 《分支名稱》
- 6、刪除分支
> git branch -d 《分支名》
複製**
> 1.列出本地分支: git branch
> 2.刪除本地分支: git branch -d branchname
#### 其中-d也可以是--delete,如:
> git branch --delete branchname
- 3.刪除本地的遠端分支:
> git branch -r -d origin/branchname
- 4.遠端刪除git伺服器上的分支:
> git push origin -d branchname
#### 其中-d也可以是--delete,如:
>git push origin --delete branchname
複製**
注意:git命令區分大小寫,例如-d和-d在不同的地方雖然都是刪除的意思,並且它們的完整寫法都是--delete,但簡易寫法用錯大小寫會執行失敗。git reset --hard 《版本號》
git reflog //檢視版本號
複製**
檢視標籤
列印所有標籤
git tag
// 列印符合檢索條件的標籤
git tag -l 1.*.*
// 檢視對應標籤狀態
git checkout 1.0.0
/// 建立標籤(本地)
// 建立輕量標籤
git tag 1.0.0-light
// 建立帶備註標籤(推薦)
git tag -a 1.0.0 -m "這是備註資訊"
// 針對特定commit版本sha建立標籤
git tag -a 1.0.0 0c3b62d -m "這是備註資訊"
/// 刪除標籤(本地)
git tag -d 1.0.0
/// 將本地標籤發布到遠端倉庫
// 傳送所有
git push origin --tags
// 指定版本傳送
git push origin 1.0.0
/// 刪除遠端倉庫對應標籤
// git版本 > v1.7.0
git push origin --delete 1.0.0
// 舊版本git
git push origin :refs/tags/1.0.0
複製**
常用命令 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...