常見的GIT命令

2021-07-30 19:15:51 字數 1534 閱讀 8086

git help                                 #可檢視git的常用命令

git config --global user.name "

your name here

"#設定commit的署名

git config --global user.email "

[email protected]

"#設定commit的email

git config [--local|--global|--system] --list/-l          #檢視本地的global資訊

git config [--local|--global|--system] --unset[-all] user.name  #刪除user.name資訊。如果user.name對應多個值,可用unset-all來刪除

#設定github的連線

git clone git:

#複製乙個repo到本地

git remote -v                               #檢視本地設定的url連線資訊

git status                                 #檢視當前工作的

branch git branch                             #檢視本地所有的

branch git branch -a                           #檢視遠端的所有分支

git branch -d branch_name                        #刪除本地branch_name這一分支

git push origin --delete branch_name                   #刪除名為branch_name的遠端分支

git checkout branch_name                         #切換到名為branch_name的分支上

git chechout -b branch_name                       #在本地新建乙個名為branch_nam的分支

git diff test_branch_name                        #檢視當前branch與test_branch_name中**的區別

git mv filename newfilename                      #檔案重新命名

git push *** branch_name                        #上傳指定的branch到遠端

git pull                                  #將遠端上的版本與本地版本進行合併,相當於get fetch + git merge

git reset --hard                             #將剛才進行的git pull所進行的操作取消,恢復本地版本合併前的原貌

常見的git命令

倉庫的初始化 git init 一定要在相應的目錄下執行這條命令,然後才會以該檔案初始化乙個倉庫 檔案的新增 git add 以上主要是對本地倉庫的一些操作 下面是一些對遠端倉庫的基本操作 將本地倉庫與遠端倉庫連線 git remote add origin git github.com ljdky...

常見的git命令

1.轉殖遠端倉庫 git clone 注 第一次轉殖到本地倉庫的分支是master 2.檢視遠端倉庫有哪些分支 git branch a 3.獲取遠端分支到本地倉庫 本地該分支不存在 建立並切換到該分支 git checkout b bry 檢視本地當前目錄下的所有分支 是當前分支 git bran...

Git 常見命令

自 這些事情都可以先在本地開 local branch 做,而不需要立即 push 分享給別人。開 branch 最大的好處除了可以不影響 stable 和其他分支版本的開發,另乙個超棒的地方是 你可以決定 merge 的方式 git 的 merge 方式可以分成四種 git merge 合併另乙個...