サーチ…
構文
-
git mv <source> <destination>
-
git mv -f <source> <destination>
パラメーター
パラメータ | 詳細 |
---|---|
-f または--force | ターゲットが存在する場合でもファイルの名前の変更や移動を強制する |
フォルダの名前を変更する
フォルダの名前を変更するにはoldName
にnewName
git mv directoryToFolder/oldName directoryToFolder/newName
git commit
やgit push
続く
このエラーが発生した場合:
致命的: 'directoryToFolder / oldName'の名前を変更できませんでした:無効な引数
次のコマンドを使用します。
git mv directoryToFolder/oldName temp && git mv temp directoryToFolder/newName
ローカルブランチの名前を変更する
次のコマンドを使用して、ローカルリポジトリ内のブランチの名前を変更できます。
git branch -m old_name new_name
ローカルブランチとリモートブランチの名前を変更する
最も簡単な方法は、ローカルブランチをチェックアウトさせることです。
git checkout old_branch
次に、ローカルブランチの名前を変更し、古いリモートを削除して、名前を変更した新しいブランチをアップストリームとして設定します。
git branch -m new_branch
git push origin :old_branch
git push --set-upstream origin new_branch
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow