#author("2021-01-07T01:40:36+09:00","default:ryuichi","ryuichi")
* git branch (ブランチの操作)[#wed6ddda]

** ブランチの作成 [#e4dd8e7a]
 git branch branch1
#lsx

*** カレントブランチの変更 [#wdd10095]
 git checkout branch1

*** ブランチ作成と共にカレントブランチの変更 [#ve33026a]
 git checkout -b branch1

** ブランチの確認 [#wcc4a6ee]
 git branch

 * branch1
   master

** ブランチの削除 [#wc0a23b0]
*** ローカルブランチの削除 [#ae445d55]
 git branch --delete branch1
 git bramch -d branch1

*** リモートブランチの削除 [#sf790dcb]
 git push --delete origin branch1
 git push origin :branch1

** ブランチ名の変更 [#y7814a5d]
 git branch -m branch1 new_branch1


トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS