5
は、私はこれらのgitのブランチを持って言う:Git:マスターブランチを変更しますか?
master
branchone
私はこれをしたい、すべてそのまま歴史を保つ:
master -> oldmaster
branchone -> master
は、私はこれらのgitのブランチを持って言う:Git:マスターブランチを変更しますか?
master
branchone
私はこれをしたい、すべてそのまま歴史を保つ:
master -> oldmaster
branchone -> master
あなたはgit branch -m
を使用することができます。
git branch -m master tmpbranch
git branch -m branchone master
git branch -m tmpbranch branchone