git-svn 上游状态检查

发布于 2024-10-21 23:43:53 字数 358 浏览 3 评论 0原文

在 git-svn 存储库中,

git status

没有显示通常的情况

# On branch master
# Your branch is behind 'origin/git-svn' by 1 commits.
#
nothing to commit (working directory clean)

,是否有一种方法可以以不同的方式配置上游,以便状态反映远程?

目前,我只是不断地运行

git svn rebase

来检查更改,但很高兴知道我是否需要提前重新设置基准。

in a git-svn repo,

git status

doesn't show the usual

# On branch master
# Your branch is behind 'origin/git-svn' by 1 commits.
#
nothing to commit (working directory clean)

is there a way to configure the upstream differently so that the status will reflect the remote?

currently, i just consistently run

git svn rebase

to check for changes, but it would be nice to know if I have to rebase or not in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灼疼热情 2024-10-28 23:43:53

我相信“git svn fetch”会提取信息,而无需更新位于“svn 分支”之上的当前 git 分支。因此,如果您执行“git fetch”,它应该包含该信息。但是,默认情况下“git status”仍然不会显示它。但是像 gitk 和 'git svn info' 和 'git log' 这样的想法将帮助你弄清楚你落后了多远,而无需实际进行 rebase。

I believe 'git svn fetch' will pull in the information without updating your current git branch that sits ontop the 'svn branch'. Thus, if you do a 'git fetch' it should have the information. 'git status' still won't show it by default, however. But thinks like gitk and 'git svn info' and 'git log' will help you figure out how far behind you are without actually doing the rebase.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文