vscode git github 配置
时间: 2023-10-09 13:09:56 浏览: 186
以下是在 VS Code 中配置 Git 和 GitHub 的步骤:
1. 安装 Git
在官网 https://git-scm.com/downloads 下载并安装 Git。
2. 在 VS Code 中安装 Git 插件
在 VS Code 中搜索 Git 插件,点击安装并重启 VS Code。
3. 配置 Git 用户名和邮箱
在终端输入以下命令,将用户名和邮箱设置为与 GitHub 上的相同:
```
git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"
```
4. 在 GitHub 中生成 SSH Key
在终端输入以下命令,生成 SSH Key:
```
ssh-keygen -t rsa -b 4096 -C "youremail@example.com"
```
接着一路回车,生成完成后,输入以下命令,复制 SSH Key:
```
cat ~/.ssh/id_rsa.pub
```
将输出的 SSH Key 复制到 GitHub 的 SSH Keys 中,路径为 Settings -> SSH and GPG keys -> New SSH Key。
5. 在 VS Code 中配置 GitHub
在 VS Code 中按下 `F1`,输入 `Git: Clone`,选择 `Git: Clone` 命令,输入 GitHub 仓库地址,选择保存位置。
6. 提交改动并推送到 GitHub
在 VS Code 中进行修改,按下 `Ctrl + Shift + G` 打开 Git 面板,点击 `+`,将修改添加到暂存区,输入提交信息,并点击 √ 提交改动。
最后按下 `Ctrl + Shift + P`,输入 `Git: Push`,选择 `Git: Push` 命令,将修改推送到 GitHub。
阅读全文