简体   繁体   中英

How can I find what SVN branch my git branch will dcommit to?

如何检查当前已检出分支的哪个分支“ svn dcommit”要推送到哪个分支?

git svn info will include the URL of the Subversion repo your git branch tracks.

$ git svn info
Path: .
URL: svn+ssh://svn.example.com/myRepository/myProject/trunk
...

您可以使用git svn dcommit --dry-run来查看dcommit时会发生什么。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM