0
0

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 1 year has passed since last update.

ファイル名を変える

Posted at

ファイル名やディレクトリ名を変える

git mv 元の名前 新しい名前

ファイル名やディレクトリ名を変えられる。

ステージと作業ツリーの中でファイル名が変わる。
既にリポジトリに保存されているコミットには影響はない。

演習1

********@mbp ******* % git status
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
	modified:   hello.txt
*******@mbp ******* % git mv hello.txt oha.txt
*******@mbp ******* % git status
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
	renamed:    hello.txt -> oha.txt

確かに作業ツリーとステージの名前が変わった。

演習2

コミットメッセージをつけて変更した。

出典

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?