我怎样才能在 Windows 中像 Mac 一样使用 sudo 权限?

我怎样才能在 Windows 中像 Mac 一样使用 sudo 权限?

在我的 Macbook 中,我可以使用来sudo git pull拉取另一台计算机上的项目新更改。

但是我该如何在Windows10上做到这一点?

因为在Windows10中我无法使用sudo,并且我也找到了一个相关命令runas但我似乎无法使用。

答案1

您不需要sudo在 Windows 上使用 git bash。

只需输入git pull <name of remote> <name of branch>即可。请确保您可以访问要从中提取的远程存储库。

相关内容