ファイルの移動

ファイルの移動と名前変更

ファイルを移動する

git mv <source> <destination>

<source>に移動したいファイルを、<destination>に移動先のディレクトリを指定します。

ファイル名を変更する

git mv <old name> <new name>

ディレクトリ名を変更する

git mv <old directory name>/ <new directory name>
git mv docker-compose/ nginx-proxy/

See Also

ブランチの操作

ブランチを作ったり合わせたり

git clone

Gitリポジトリの複製

git config

gitのパラメータを設定する

基本操作

init, add, remote, commit, reset, rm

git remoteの使い方

リモートリポジトリを編集する