Git快速上手 常用命令整理

2021-10-25 10:42:33 字數 1571 閱讀 2678

git config --global user.name ''

//配置使用者名稱

git config --global user.email ''

//配置郵箱

git config --list //檢視資訊

git config user.name //檢視使用者名稱

git help //幫助

git init //初始化

git add [filename]

//新增檔案至暫存區

git add .

//新增所有檔案

git commit -m ''

//提交檔案

git commit -am //直接提交修改後的檔案

git log //檢視版本

git log --oneline //一行顯示

git log --author //檢視對應作者版本

git log --oneline --graph --all //檢視所有分支的版本線圖

git diff

git diff --staged

//檔案還原

git checkout --

[filename]

//在沒有add前還原檔案至上次狀態

git reset head

[filename]

//撤銷當前檔案的追蹤

//回退版本

git reset --hard head

^//回退到上乙個版本

git reset --hard head^^

//回退到上兩個版本

git reset --hard [hash]

//回退到指定hash版本

git reflog 指標的理解

//回到指定的版本並保留所有版本:

git checkout [hash]--.

//回到指定的版本

git commit -am ''

注意:

1.head可以理解為乙個指標

2.版本回退不會保留版本號,回到某個版本可以保留所有版本號

git branch [name]

[hash]

//檢視當前所處分支(加名字:建立分支 加hash值:找回刪除的分支)

git checkout [name]

//切換分支

git checkout -b [name]

//切換並建立分支

git branch [name]

-d //刪除分支

git branch [name]-d

//強制刪除分支(例如:分支未合併時)

git merge [name]

//合併分支

//合併時解決衝突

git merge --abort //忽略合併

git add . git commit 解決方式 :wq //最佳方法

Git 常用命令整理

最近在公司的伺服器上安裝了git sever,開始從svn轉向到git了,整理了一些在git常用的命令 初始化乙個版本倉庫 git init clone遠端版本庫 git clone git xbc.me wordpress.git 新增遠端版本庫origin,語法為 git remote add ...

Git 常用命令整理

初始化乙個版本倉庫 git init clone遠端版本庫 git clone git xbc.me wordpress.git 新增遠端版本庫origin,語法為 git remote add shortname url git remote add origin git xbc.me wordp...

Git常用命令整理

雖然git現在也有ui了,但是一些常用的命令了解總是有好處的,沒準什麼時候就用上了呢 git config global user.name your name git config global user.email your email 2.git bash下操作資料夾跟dos是一樣的 如建立資...