简体   繁体   中英

In a Git repository, how to properly rename a directory?

I think it should work to copy the directory to be renamed to a new directory with desired name, and delete the old directory , and git add , git commit and push everything. But is this the best way?

Basic rename (or move):

git mv <old name> <new name>

Case sensitive rename—eg. from casesensitive to CaseSensitive —you must use a two step:

git mv casesensitive tmp
git mv tmp CaseSensitive

( More about case sensitivity in Git… )

…followed by commit and push would be the simplest way to rename a directory in a git repo.

If you receive this error: fatal: renaming 'foldername' failed: Invalid argument

Try this:

*nixOS

git mv foldername tempname && git mv tempname folderName

WinOS

git config core.ignorecase false; git mv foldername tempname; git mv tempname folderName

1. Change a folder's name from oldfolder to newfolder

git mv oldfolder newfolder

2. If newfolder is already in your repository & you'd like to override it and use:- force

git mv -f oldfolder newfolder

Don't forget to add the changes to index & commit them after renaming with git mv.

3. Renaming foldername to folderName on case insensitive file systems

Simple renaming with a normal mv command(not git mv) won't get recognized as a filechange from git. If you try it with the 'git mv' command like in the following line

git mv foldername folderName

If you're using a case insensitive filesystem, eg you're on a Mac and you didn't configure it to be case sensitive, you'll experience an error message like this one:

fatal: renaming 'foldername' failed: Invalid argument

And here is what you can do in order to make it work:-

git mv foldername tempname && git mv tempname folderName

This splits up the renaming process by renaming the folder at first to a completely different foldername. After renaming it to the different foldername the folder can finally be renamed to the new folderName. After those 'git mv's, again, do not forget to add and commit the changes. Though this is probably not a beautiful technique, it works perfectly fine. The filesystem will still not recognize a change of the letter cases, but git does due to renaming it to a new foldername, and that's all we wanted :)

You can rename the directory using the file system. Then you can do git rm <old directory> and git add <new directory> ( Help page ). Then you can commit and push.

Git will detect that the contents are the same and that it's just a rename operation, and it'll appear as a rename entry in the history. You can check that this is the case before the commit using git status

lots of correct answers, but as I landed here to copy & paste a folder rename with history , I found that this

git mv <old name> <new name>

will move the old folder (itself) to nest within the new folder

while

git mv <old name>/ <new name>

(note the '/') will move the nested content from the old folder to the new folder

both commands didn't copy along the history of nested files. I eventually renamed each nested folder individually

git mv <old name>/<nest-folder> <new name>/<nest-folder>

From Web Application I think you can't, but you can rename all the folders in Git Client, it will move your files in the new renamed folders, than commit and push to remote repository.

I had a very similar issue: I had to rename different folders from uppercase to lowercase (like Abc -> abc), I've renamed all the folders with a dummy name (like 'abc___') and than committed to remote repository, after that I renamed all the folders to the original name with the lowercase (like abc) and it took them!

For case sensitive renaming, git mv somefolder someFolder has worked for me before but didn't today for some reason. So as a workaround I created a new folder temp , moved all the contents of somefolder into temp , deleted somefolder , committed the temp , then created someFolder , moved all the contents of temp into someFolder , deleted temp , committed and pushed someFolder and it worked! Shows up as someFolder in git.

I tried with the following command and it didn't work. I was receiving a fatal: renaming '...' failed: Invalid argument error.

git mv oldName NewName

Then solved with the following method:

  1. First I duplicate the folder I wanted to rename
  2. Then I ran the following command to remove the folder
git rm oldName -r
  1. Renamed the duplicated folder to NewName

Here's an example for renaming directory.

git mv src/dir1/ src/dir2/

If you get an error stating Permission Denied , you can try

git mv src/dir1 src/temp/
git mv src/temp src/dir2

I think it should work to copy the directory to be renamed to a new directory with desired name, and delete the old directory , and git add , git commit and push everything. But is this the best way?

Just a heads up, the accepted answer won't work unless you give complete folder paths. Otherwise, you'd get fatal: bad source error.

renaming in git is difficult because the index will have to change and the tree object will be created after commit. I had the problem of renaming t emplates to T emplates... I solved the problem by

  • copying Templates to templates in bash [cp -r Templates templates ] (git mv Templates templates will not work )
  • removing Templates in bash [rm -r Templates ](check that the copying was successful first)
  • Removing the Templates file from the index[use "git ls-files -s" to see the index, "git rm " you can use wildcards such as git rm Templates/*, continue checking the index]
  • Adding the renamed paths to the index ("git add -v." and check the result with "git ls-files -s"
  • Commit ["git commit -m "renaming... "
  • If you have remotes git push <to wherever origin,

Simple Trick

You can just rename the directory with any temp name and then rename again and it will work

git rm -rf --cached path/to/your/directories

然后重新添加并提交。

Simply rename the folder. git is a "content-tracker", so the SHA1 hashes are the same and git knows, that you rename it. The only thing that changes is the tree-object.

$ rm <directory> // remove the directory
$ git add . // add changes to the git
$ git commit // commit removed directory

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM