Windows怎么安装git并链接到github
时间: 2023-09-17 10:12:26 浏览: 111
git与github安装
首先,你需要在官网下载 Git for Windows 安装程序。接着,按照以下步骤进行操作:
1. 打开 Git Bash 终端。
2. 配置 Git 用户名和邮箱:
```
git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"
```
3. 在 GitHub 上创建一个新的仓库。
4. 在本地创建一个文件夹,用于存放你的代码。
5. 在 Git Bash 终端中,进入该文件夹并初始化 Git 仓库:
```
cd /path/to/your/folder
git init
```
6. 将你的代码添加到 Git 中:
```
git add .
```
7. 提交你的代码:
```
git commit -m "Initial commit"
```
8. 将本地仓库和 GitHub 上的远程仓库进行关联:
```
git remote add origin https://github.com/yourusername/yourrepository.git
```
9. 将本地仓库中的代码推送到远程仓库:
```
git push -u origin master
```
完成后,你的代码就会被上传到 GitHub 上。
阅读全文