回购的Github回购名称和本地文件夹名称

时间:2012-08-21 19:56:00

标签: git github

现在我将我的应用程序源(git repo)存储在文件夹中:

MyProject的/ front_app

但是在git hub上我希望repo命名为“front_app”,而不是“my_project_front_app”可以吗?

这是一个好的方法,还是为这个git repo设置本地文件夹my_project_front_app更好?

2 个答案:

答案 0 :(得分:17)

你可以做你想做的事。本地和远程存储库可以有不同的名称。

如果您已有本地存储库,则可以使用以下命令添加远程(根据需要命名)

git remote add origin http://distant/a_remote_repository

如果您已有GitHub存储库,可以在所需的本地文件夹中克隆它:

git clone http://distant/a_remote_repository a_different_local_folder

答案 1 :(得分:2)

没有理由不能将github存储库,本地克隆和coude的任何其他副本命名为不同的东西。除了你和你的合作者保持正确的能力之外,它没有真正的优势或劣势。

git clone <url> <path> ;# path is a variable; it's the url that's well-defined
git remote add <name> <url> ;# as can be seen in the 'git remote add' command