Windows下 Git的简单使用

tech2023-02-20  102

1.下载安装

地址:https://gitforwindows.org/

2.配置用户信息

打开Git Bash Git命令窗口: 输入命令: git config -- global user.name 'xxxxhoujin9109' //github用户名 global 为全局配置 git config --global user.email 'xxxxxxx9109@163.com' //github绑定的邮箱 git config --list //查看已有的配置信息

3.Git三种状态:

已提交(committed)、已修改(modified)和已暂存(staged) Git三个工作区域: 工作区、暂存区、版本库

 

注: workspace:工作区 staging area :暂存区 local repository : 本地仓库 remote repository : 远程仓库

4.Git创建本地仓库

新建文件夹并进入,输入命令: git init //初始化本地仓库 git add xxx //将xxx文件添加至缓存区 git status //查看当前仓库状态,显示有变更的文件 git commit -m 'xxxx' //从暂存区将文件提交至本地仓库,xxx为提交的备注信息 git log //查看提交记录

5.Git将文件推送至远程仓库

首先在github中新建一个空白仓库temp 本地仓库与远程仓库关联: git remote add origin https://github.com/wanghoujin9109/temp.git git push origin master //将本地仓库文件推送至远程仓库 git remote //查看推送记录

6.克隆

git clone https://github.com/wanghoujin9109/temp.git //将远程仓库项目文件克隆下载到本地

 

最新回复(0)