在本地使用 Git,然后合并并签入 StarTeam
我的客户当前要求我们使用 StarTeam 来检查代码更改。我想从 StarTeam 中提取所有代码并设置一个本地 Git 存储库,以便我可以利用分支来对某些 JQuery 模块进行升级。有人对使用本地 Git 存储库然后检查 StarTeam 服务器的更改有任何建议或建议吗?
My client currently requires us to use StarTeam for checking in our code changes. I would like to pull all the code down from StarTeam and setup a local Git repository so that I might take advantages of the branching to work on some upgrades of some JQuery modules. Does anyone have any suggestions or advice on using a local Git Repository then checking in changes to a StarTeam server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会有点像 git-svn 那样的工作流程:
master
master
分支应该反映 StartTeam 服务器的最新导入)master
(使用 StartTeam 的最新版本)master
分支master
将再次代表 StarTeam 内容)I would go a bit like
git-svn
does that kind of workflow:master
branchmaster
master
branch is supposed to reflect the StartTeam server latest import)master
(with the latest from StartTeam)master
branchmaster
will again represents StarTeam content)