SVN 是否允许更新 Bath 中选定的目录?
我的项目有许多分支和标签以及许多目录。是否可以编写一些脚本 - 所以第一个脚本仅更新主干,另一个仅更新分支1等,因为现在我浪费很多时间来更新50多个目录以检查是否有新的更新?因此需要某种自动化。 谢谢。
I have project with many branches and tags and with many directories. Is it possible write some scripts - so first script update only trunk, another only branch 1 etc, because now I waste many time to clock to update on more than 50 directories to check if there are new updates? So some kind of automation is need.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,你不应该把它们全部检查出来......你应该只检查你正在工作的分支(从这个意义上说,主干也是一个分支)。标签永远不应该改变......通常您使用标签作为特定修订版(例如版本)的快照,因此没有理由更新它。
也就是说,如果您出于某种原因拥有整个存储库结账,您可以只更新您想要的分支。假设您已将整个存储库签出到
/myrepo
:Well you shouldtn have them all checked out.... You should only check out the branch youre working (in this sense trunk is also a branch). Tags should NEVER change... typically you use a Tag as a snapshot of particular revision like a release so there would be no reason to update it.
That said if you have th eentire repo checkout for some reason you can just update the branch you want. Assuming you have the entire repo checked out to
/myrepo
: