标签:hello 仓库 推送 空格 checkout 笔记 代码 用户 历史
等我视频:
1.安装完git之后设置一下用户名和密码
$ git config --global user.name "Your Name" $ git config --global user.email "email@example.com"
2.把文件夹变成git仓库
git init
3.添加文件
git add hello.txt
4.推送文件
git commit -m "add a new file"
5.查看当前仓库的状态
git status
6.查看修改内容
git diff
7.查看版本信息
git log
8.回退某个版本
git reset --hard commit_id
9.查不到以前版本的commi_id了怎么办?查看命令历史
git reflog
10.查看工作区的文件和版本库里面的暂存区内文件的差别
git diff HEAD --readme.txt
11.撤销修改,这里分为两种情况,如果你已经add了,就撤销到你add时候的状态,如果你还木有add,那就撤回到你上次commit的状态。下面代码的本意就是撤销到该文件的上一步操作。
git checkout -- readme.txt // -- 前后一定要有空格哦
12.add文件之后返回add之前的时候
git reset HEAD readme.txt
13.删除文件分为两种,rm和git rm
git rm test.txt //发现误删 git checkout -- test.txt //利用checkout撤回到test.txt存在的时候
git rm test.txt //利用git rm删除,版本库里面直接没有了,不可撤销 git commit -m "rm test.txt"
14.
标签:hello 仓库 推送 空格 checkout 笔记 代码 用户 历史
原文地址:http://www.cnblogs.com/yunquan/p/7269521.html