标签:管理 查看 版本库 文件 描述 cal style 文件内容 stat
创建版本仓库:
[root@localhost ~]# mkdir /home/gitroot # 这个目录作为版本仓库 [root@localhost ~]# cd /home/gitroot/ [root@localhost gitroot]# git init # 初始化,使得这个目录变成Git可以管理的仓库
推送文件到版本仓库:
[root@localhost gitroot]# cat 1.txt # 先创建一个文件,然后再把这个文件推送到版本仓库 1111 2222 3333
[root@localhost gitroot]# git add 1.txt # 先添加到工作区
[root@localhost gitroot]# git commit -m "add new 1.txt" # 提交到版本仓库,-m 用于添加描述信息(即描述做了哪些修改)
[root@localhost gitroot]# echo "4444" >> 1.txt # 假设我们更改了文件内容 [root@localhost gitroot]# git status # 用于查看是否更改过文件内容,在更改文件之前最后用该命令查看之前是否更改过
[root@localhost gitroot]# git diff # 用于对比更改前后的文件内容,看一下更改了什么内容 [root@localhost gitroot]# git checkout -- 1.txt # 如果我们不想更改,我们可以恢复到原来的内容 [root@localhost gitroot]# cat 1.txt 1111 2222 3333
总结:
git init # 初始化
git add 1.txt # 添加到工作区
git commit -m "..." # 提交到版本库
git status # 查看是否更改了文件
git diff # 对比更改了哪些内容
git checkout -- 1.txt # 恢复到版本库最新版本的内容
标签:管理 查看 版本库 文件 描述 cal style 文件内容 stat
原文地址:http://www.cnblogs.com/pzk7788/p/7364312.html