1

svn2git の移行を行い、新しく変換されたローカル git を bitbucket リポジトリのサブディレクトリに配置する必要があります。

ので、私は持っています

svn2git/

bitbucket の開発者フォルダーに配置したい

stuff/svn2git

どうすればこれを行うことができますか?

4

3 に答える 3

0

I wouldn't think git cares about which directory it is in. You should be able to just move it:

mv svn2git stuff
于 2013-05-02T18:11:49.907 に答える
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 に答える