2

git@gitorious.org:~porton/texmacs/texmacs-porton.git変更を加えたメインTeXmacsリポジトリのクローンを含む私のリポジトリですgit://gitorious.org/texmacs/texmacs.git(メインリポジトリには受け入れられません)。

次のコマンドを実行します。

$ git clone git@gitorious.org:~porton/texmacs/texmacs-porton.git

$ cd texmacs-porton

$ git fetch --verbose --progress https://git.gitorious.org/texmacs/texmacs.git

最後get fetchは何も出力せず、私には新しいブランチを作成しないようです。

メインのTeXmacsリポジトリから自分のリポジトリにマージするのを手伝ってください。

gitのバグですか?

4

2 に答える 2

3

試す

git remote add official git://gitorious.org/texmacs/texmacs.git
git fetch official
  • git://はるかに高速です
  • リモートに名前を付けることで、fetchはリモートブランチを作成できます
于 2011-07-27T14:12:51.280 に答える
1

問題はおそらくあなたのURLです。を使用する必要があるときに使用していますhttps://(結果は404になります)git://

以下は私のために働きます:

git fetch git://git.gitorious.org/texmacs/texmacs.git
于 2011-07-27T14:07:15.607 に答える