在github上建立新分支

2021-06-22 18:08:07 字數 666 閱讀 2870

在github上建立倉庫:

create a new repository on the command line

touch readme.md

git init

git add readme.md

git commit -m "first commit"

git remote add origin

git push -u origin master

在本地新建乙個分支: git branch branch1

切換到你的新分支: git checkout branch1

將新分支發布在github上: git push origin branch1

在本地刪除乙個分支: git branch -d branch1

在github遠端端刪除乙個分支: git push origin :branch1   (分支名前的冒號代表刪除)

直接使用git pull和git push的設定

git branch --set-upstream-to=origin/master master 

git branch --set-upstream-to=origin/thirdparty thirdparty

git config --global push.default matching

在github上建立新分支

在github上建立倉庫 create a new repository on the command line touch readme.md git init git add readme.md git commit m first commit git remote add origin gi...

Github 建立新分支

clone github 上的repository,如下 git clone git github.com fbing design patterns.git1 檢視本地分支 使用 git branch命令,如下 git branch master 標識的是你當前所在的分支。2 檢視遠端分支 命令如...

Github 建立新分支

clone github 上的repository,如下 git clone git github.com fbing design patterns.git 1 檢視本地分支 使用 git branch命令,如下 git branch master 標識的是你當前所在的分支。2 檢視遠端分支 命令...