标签: git visual-studio-code git-commands
在Visual Studio Code中,有一个按钮 Synchronize changes
Visual Studio Code
Synchronize changes
我认为在没有合并冲突的情况下,vs code尝试执行git pull,然后尝试执行git push。
vs code
git pull
git push
或者存在用于同步本地↔远程更改的特殊命令
实际上哪个命令正在调用?
答案 0 :(得分:3)
Visual Studio Code先执行pull,然后执行push。您可以使用Show Git Output操作来查看它,或使用View→Output并在下拉列表中选择Git。
pull
push
Show Git Output
View
Output
Git
您可以在命令面板中找到Show Git Output操作:
或者,在“源代码管理”选项卡中,单击三个点,然后在列表底部找到Show Git Output。