如何从经常重新建立基础的 git-svn 存储库进行推送
我通过 git-svn 完成所有日常工作,像疯子一样排队签入和变基 :) 这样做的缺点是我经常要排队几天的工作(我知道)这让我有点紧张,因为它只在一个地方。如果我没有一直使用 git-svn 和 rebase,那么如果我做了一些愚蠢和松散的数据,我只会将更改推送到另一台计算机并克隆它。
您对推动经常重新调整的 git 存储库有什么建议?
I do all my daily work through git-svn, queuing up checkins and rebasing like a mad-man :)
the down side to this is I often have a couple days work queued up (tisk tisk i know) and it makes me a little nervous that its only in one place. If I was not using git-svn and rebasing all the time i would just push my changes to another computer and clone it if i do something stupid and loose data.
What is your advice on pushing often-rebased git repos?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以拥有自己的远程副本来践行。将裸存储库存储在保管箱中是一种方法。推动到这一点,当你重新设定基础时,
push --force
You could have your own remote copy to stomp all over. Storing a bare repo in dropbox is one way to go. Push to that and when you've rebased,
push --force