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 3 years have passed since last update.

[git] 特定のフォルダ下にあるファイルをすべてリネームする

Posted at

リネームしたいファイル群があるフォルダを下記のコマンドで消す

git rm -r --cached 対象フォルダ

コマンドで消した後、ステージしてコミットする
ステージした段階で git statusrename Data/{file => FILE} (100%) のような表示が確認できれば良い

git add 対象フォルダ
git commit -m"コミットメッセージ"
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?