切換分支
# 1.檢視所有分支
> git branch -a
# 2.檢視當前使用分支(結果列表中前面標*號的表示當前使用分支)
> git branch
# 3.切換分支
> git checkout 分支名
# 4.從遠端拉取新分支
git fetch origin f_metadata_auto
**********=本地建立分支***************==
1) 切換到基礎分支,如主幹
git checkout master
2)建立並切換到新分支
git checkout -b f_login
git branch可以看到已經在f_login分支上
3)更新分支**並提交
git push origin f_login
***************合併分支**********====
1、將分支切換到master
git checkout master
2、將**pull到本地
git pull
3、切換到你所在分支dev
git checkout dev
4、merge
git merge master
5、push
git push
***************====刪除分支***************==
1 先切換到別的分支: git checkout master
2 刪除本地分支: git branch -d dev_20181018
3 如果刪除不了可以強制刪除,git branch -d dev_20181018
4 有必要的情況下,刪除遠端分支:git push origin --delete dev_20181018
git 基本命令
man git man git commit man git pull man git merge git config global user.name yourname git config global user.email yourname example.com cd home git m...
Git 基本命令
git config global user.name xx git config global user.email x com 1.建立專案資料夾 mkdir myproject 2.進入專案資料夾 cd myproject 3.初始化專案 git init 4.建立 readme.md tou...
Git 基本命令
說明 以下所有操作命令 均在 git bash 下執行,即命令為linux風格 檔案 以 txt 為例 其中,建立某乙個倉庫,在某一具體路徑下 執行 git init即可 幫助命令 git help 建立 respository git init 刪除 respository rm rf git 建...