Git起步

2019-03-01  本文已影响0人  青柠_efca

GitHub官网

一、下载安装Git

二、基础的Git命令学习

2.1 初始化仓库

C:\Users\Administrator>d:
D:\>cd learngit
D:\learngit>git init
Initialized empty Git repository in D:/learngit/.git/
D:\learngit>

2.2 向仓库添加文件、提交文件

# 1.个人简介
## 1.1 基本情况
## 1.2 联系方式
git add README.md
git commit -m "Personal profile"

2.3 修改文件

# 1.个人简介
## 1.1 基本情况
## 1.2 联系方式

# 2.教育经历
## 2.1 学历教育
## 2.2 继续教育

D:\learngit>git add README.md
D:\learngit>git commit -m "Educational experience"
[master (root-commit) 8a40766] Personal profile
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 README.md
D:\learngit>
image image

2.4 查看仓库状态

D:\learngit>git status
On branch master
nothing to commit, working tree clean

2.5 查看版本历史记录

README.md文件经过了两次提交,git log命令进行查看两次版本

image

d5cef7149e729a5f662ac41b01afdae1fa9883d8是commit id,每提交一个新版本,Git就会把它们自动串成一条时间线。

2.6 穿越到任意一个版本

当我们需要穿越到任意在记录中存在的版本去的时候,只需使用如下命令:

image

版本号很长,不需要写全,写前几位就可以了,Git会自动寻找
然后我们打开README.md文件,会发现

image

点击Y,文件就恢复成了第一版

2.7 多文件提交

git add .

然后查看git status

通过commit一次性提交两个文件

总结:

注:

上一篇下一篇

猜你喜欢

热点阅读