1

git-svn 目前让我发疯。

我跑了:

git rm <file>
git commit

该文件仍在 svn repo 中,但我不知道如何将其检出以使其处于修订控制之下。我想在 svn 中做同样的事情:

rm <file>
svn update

谢谢

4

2 回答 2

2

如果您没有使用 将提交推送到 Subversion 存储库git svn dcommit,您可以使用git reset --hard HEAD^.

于 2012-08-20T10:44:35.173 回答
1

With git commit you commit removal locally. You should run git svn dcommit then, it's an analog of git push.

于 2012-08-17T20:06:04.727 回答