1

我进行了 svn2git 迁移,需要将新转换的本地 git 放入 bitbucket 存储库的子目录中。

所以我有

svn2git/

并希望将其放置在 bitbucket 的开发人员文件夹中

stuff/svn2git

我怎么能这样做?

4

3 回答 3

0

Two ways:

  1. Copy it in, under the bitbucket repository and add it as part of it.
  2. Create a separate git repository and add it as a remote under the existing bitbucket repository.

Information regarding remotes can be found at http://git-scm.com/book/ch2-5.html‎ .

于 2013-05-02T18:12:45.603 回答
0

我不认为 git 关心它在哪个目录中。你应该可以移动它:

mv svn2git stuff
于 2013-05-02T18:11:49.907 回答
0

您可以直接将本地 git 文件夹移动到所需位置。就像在项目文件夹中初始化了 git 一样,其中的所有文件一旦添加,git 就会自动跟踪。

于 2013-05-02T18:17:52.007 回答