【GitHub】ブランチ(ローカル&リモート)を操作する
2016/07/27
【ローカル】
ローカルのブランチを作成したい $ git branch
$ git branch <branchname>
ローカルのブランチ名を変更したい $git branch -m <oldbranch> <newbranch>
$ git branch -m <oldbranch> <newbranch>
ローカルのブランチを切り替えたい $ git checkout <branch>
$ git checkout <branch>
ローカルのブランチ一覧を表示したい $ git branch
$ git branch
ローカルのブランチを削除したい $ git branch -d <branchname>
$ git branch -d <branchname>
ブランチを削除するには、次のオプションがあります。
-d または –delete はマージされたブランチは削除できる
-D は容赦なく(irrespective)ブランチを削除する
【リモート】
リモートにブランチを作成したい $ git branch
リモートのブランチ一覧を表示したい $ git branch -r
$ git branch -r
リモートのブランチ を削除したい $ git push origin :<branchname>
$ git push origin :<branchname>
Warning: Undefined variable $postID in /home/foodheart/flashbuilder-job.com/public_html/wp-content/themes/stingerplus/single.php on line 87