15
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

git コマンド branchの削除

Posted at

適当にブランチを移動

git checkout master

ローカルのブランチの確認

git branch

ローカルブランチの削除(-Dで強制削除)

git branch -d 削除したいブランチ名

ローカルブランチの確認

git branch

リモートブランチの削除

git push origin :削除したいブランチ名

ローカルとリモートのブランチを確認

git branch -a

15
15
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?