使用TortoiseGit,我可以一步提交和svn dcommit吗?
我正在使用 TortoiseGit 并使用 git-svn 处理 svn 存储库。
有时我想进行一行更改并立即将其提交到 svn 存储库(这样 CI 服务器就会接收更改)。
目前我必须先 git commit,然后 dcommit。对于我想要快速完成的事情来说,这是一个额外的步骤...如果我可以在一个步骤中提交和dcommit,那就太好了。或者,是否有一个命令行命令可以用来做同样的事情?
I am using TortoiseGit and am working with an svn repository using git-svn.
Sometimes I want to make a one line change and dcommit it to the svn repo immediately (so the CI server will pick up the change).
Currently I have to git commit, then dcommit. It's an extra step for something I want to do quickly...it would be nice if I could just commit and dcommit in one step. Alternatively, is there a command line command I could use to do the same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TortoiseGit 的 svn 命令是:
因此,对于 GUI,打开新的ticket 可能是个好主意。
至于命令行,我认为没有一个本机 git 命令能够做到这一点,这会留下一个自定义脚本来实现该序列(原则上类似于此“显示尚未在 master 上提交”文章,在其末尾)。
The svn commands from TortoiseGit are:
So regarding the GUI, may be opening a new ticket would be a good idea.
As for the command-line, I do not think there is a native git command able to do that, which leaves a custom script to achieve that sequence (similar in principal to the one in this "Showing commits not yet on master" article, at the end of it).