I know ''git mv'' can be used to rename a file or dir. But I don't know how to rename a project's name?
|
There are two things you might mean by this 1) the name as displayed by (for example) edit 2) the name of the directory containing the repository, as used by just use the bash |
|||
|
|
|
A git repo doesn't have a name. You can just rename the directory containing your worktree if you want. |
|||||||||||||||||
|
|
In a new repository, for instance after a which looks like this:
editing this on the local repo will not change it on the remote. |
|||
|
|
|
If you meant renaming your repository, go to your repo and click "admin", then rename. Once you see the red box warning you about some sky-fallingness and other things, go read this question. |
|||||||
|
|
Rename |
||||
|
|
|
If you are in Eclipse and have installed Egit then you can rename the repository that contains a project by doing the following: 1) In Eclipse: Close all projects that are in the repository. 2) In the file system: Locate the directory/folder that contains the repository. 3) In the file system: Rename the directory/folder that contains the repository. 4) In the file system: Open the directory/folder that contains the repository and rename the project directory/folder of any project you intend to rename so that it will match the new name of the project. (This is not required but it gives consistency between the project name in Eclipse and the project directory/folder in the repository.) 5) In Eclipse: Delete all projects that are in the repository but be sure to NOT check the 'Delete the contents from the file system' checkbox. (The project should no longer contain the correct location of the contents of the file system so the data could not be deleted in any case but it is better to be safe than sorry.) 6) In Eclipse: From the Menu select the File|Import... option. 7) In Eclipse: In dialog box open the 'Git' folder, select 'Projects from Git' and click 'Next'. 8) In Eclipse: In dialog box select 'Local' and click 'Next'. 9) In Eclipse: In dialog box click the 'Add...' button. 10) In Eclipse: In dialog box make sure the check box next to the repository is checked and click 'Finish'. 11) In Eclipse: In dialog box select the repository and click 'Next'. 12) In Eclipse: In dialog box select the 'Import existing projects' radio button, select the "Working Directory" and click 'Next'. 13) In Eclipse: In dialog box check the check box next to the projects you want to work on and click 'Finish'. 14) In Eclipse: Rename any the projects that are in the repository if so desired. (For consistency between Eclipse and the file system give them the same name as the project directory/folder inside the repository directory/folder.) |
|||
|
|

git clone git@HOSTNAME:PROJ0.git', there will be a dir named PROJ0 created in my work dir. Now, I want to change the name of a repository in myrepositories host' rather than the one in my work dir. – Cook Schelling Jan 12 '10 at 1:59mvto rename the PROJ0.git in my `repositories host', it work. But I don't know whether it's right, I mean, valid. – Cook Schelling Jan 12 '10 at 2:15