如何在 gitg / gitx 可视化工具中执行 git pull ?
我可以使用 gitg 进行推送并将代码推送到远程主分支,但我看不到任何执行 git pull 的选项。
我使用的是 Ubuntu 10 和 11
I can do a push using gitg and push my code to the remote master branch but I can't see any option to do a git pull.
I am on Ubuntu 10 and 11
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能直接从
git gui
中拉取,但考虑到pull
是fetch
后跟merge
,您可以获取远程(在远程菜单中并从
获取),然后将远程分支合并到您的分支中(合并菜单和本地合并
,选择跟踪分支< /代码>)。
You cannot directly pull from
git gui
, but given than apull
is afetch
followed by amerge
, you can fetch the remote (in the remote menu andfetch from
), and then merge the remote branch into yours (Merge menu andLocal merge
, selecttracking branch
).在gitg 0.2.4中,你不能直接拉取,所以你还可以获取并合并:
origin /master
大多数时候)通过右键单击分支的尖端In gitg 0.2.4, you cannot pull directly, so you also fetch and merge:
origin/master
most of the time) by right-clicking on the tip of the branch