是否有名为git up
的命令。我已经看过其他一些使用它的帖子。我正在使用git版本1.7.9.5,并且在尝试使用该命令时出现以下错误:
git: 'up' is not a git command. See 'git --help'.
我在这里缺少什么?
答案 0 :(得分:4)
这些帖子可能是指this tool,其源代码为available here。
答案 1 :(得分:1)
请参阅此问题的已接受答案Why am I merging "remote-tracking branch 'origin/develop' into develop"?
经过长时间的解释,它建议添加一个" git up"别名:
git config --global alias.up'!git remote update -p; git merge --ff-only @ {u}'
所以不,它不是一个有效的命令,除非您已经安装了这个别名,这不是一个坏主意。