2
如何檢查我當前簽出的分支中的哪個分支「svn dcommit」要推送到?我怎樣才能找到我的git分支將提交的SVN分支?
如何檢查我當前簽出的分支中的哪個分支「svn dcommit」要推送到?我怎樣才能找到我的git分支將提交的SVN分支?
git svn info
將包含您的git分支曲目的Subversion repo的URL。
$ git svn info
Path: .
URL: svn+ssh://svn.example.com/myRepository/myProject/trunk
...
您可以使用git svn dcommit --dry-run
來查看dcommit會發生什麼情況。