vs 开发者powershell安装git

在 VS 开发者 PowerShell 中安装 Git 的方法是:

  1. 打开 VS 开发者 PowerShell

  2. 运行以下命令安装 chocolatey(一个 Windows 包管理器):

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

  1. 使用 chocolatey 安装 git:

choco install git -y

  1. 等待安装完成后,验证是否安装成功:

git --version

如果正确打印出 git 版本,则表示已经成功安装。

  1. 最后设置全局的用户名称和邮箱:

git config --global user.name "your name"

git config --global user.email "your@email.com"

这样就在 VS 开发者 PowerShell 中安装好了 git。后续就可以使用 git 相关命令了。

let me know if you have any other questions!

相关推荐
Smile丶凉轩9 小时前
微服务即时通讯系统的实现(服务端)----(1)
c++·git·微服务·github
和你一起去月球18 小时前
TypeScript - 函数(下)
javascript·git·typescript
我不是程序猿儿19 小时前
【GIT】TortoiseGit的变基(Rebase)操作
git
yyycqupt1 天前
git使用(一)
git
Kkooe1 天前
GitLab|数据迁移
运维·服务器·git
Beekeeper&&P...1 天前
git bash是什么,git是什么,git中的暂存区是什么,git中的本地仓库是什么,git中工作目录指的是什么
开发语言·git·bash
Stara05111 天前
Git推送+拉去+uwsgi+Nginx服务器部署项目
git·python·mysql·nginx·gitee·github·uwsgi
lsswear1 天前
GIT 操作
git