我正在使用git命令在Linux机器上提取存储库。当我执行git时,它会提示我提交像
这样的提交消息 Please enter a commit message to explain why this merge is necessary,especially if it merges an updated upstream into a topic branch
如何使用现有的git pull命令禁用此提示消息?
以下是我正在使用的git命令
sudo git pull https://someusername:somepassword@someproject.visualstudio.com/BE%20SWM/_git/jcibe-swm-ems develop
答案 0 :(得分:1)
git pull
做的是git fetch
后跟git merge FETCH_HEAD
。
这是避免提示消息的解决方案。
git fetch https://someusername:somepassword@someproject.visualstudio.com/BE%20SWM/_git/jcibe-swm-ems develop && git merge FETCH_HEAD --no-edit