Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/git/22.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
VS代码:查看git远程更改的命令?_Git_Visual Studio Code_Git Remote - Fatal编程技术网

VS代码:查看git远程更改的命令?

VS代码:查看git远程更改的命令?,git,visual-studio-code,git-remote,Git,Visual Studio Code,Git Remote,目前,为了查看git上的远程更改,我在终端中执行以下操作 git remote update git status -uno 但是有没有一种方法可以在VisualStudio代码中以图形方式实现这一点?可能通过任何扩展?尝试此扩展:vs代码中的git scm可能就是您想要的。它显示已更改、已暂存的文件、合并更改等。它现在内置到vs代码中。您还可以将这些与远程回购同步,并直观地查看当前分支中有多少提交在前面或后面 这似乎是针对git log。。。它仅用于本地更改。它不显示等待提取的远程提交的列表

目前,为了查看git上的远程更改,我在终端中执行以下操作

git remote update
git status -uno

但是有没有一种方法可以在VisualStudio代码中以图形方式实现这一点?可能通过任何扩展?

尝试此扩展:

vs代码中的git scm可能就是您想要的。它显示已更改、已暂存的文件、合并更改等。它现在内置到vs代码中。您还可以将这些与远程回购同步,并直观地查看当前分支中有多少提交在前面或后面

这似乎是针对
git log
。。。它仅用于本地更改。它不显示等待提取的远程提交的列表。