1.创建版本库:
git init
设置用户:
git config --global user.email "you@example.com"
2.添加到仓库(将修改的内容提交到"暂存区"中)
git add 1.txt
3.提交到仓库(将“暂存区”中的内容提交到当前分支上)
git commit -m "说明文字"
4.查看仓库状态:
git status
5.查看修改的内容:
git diff
6.查看提交历史记录:
git log
7.版本回溯:
git reset --hard dsdff12
8.查看命令历史:
git reflog
9.撤消修改
(1)还没有提交到“暂存区”时:
git checkout -- 1.txt
(2)已经提交到“暂存区”时:
git reset HEAD 1.txt
10.删除文件
在git add和git commit -- 后(如果没进行这两步,无法撤消删除),目录中用rm等方式删除一个文件后:
(1)从版本库中删除该文件:gir rm 文件名
(2)恢复该文件:git checkout -- 文件名
11.显示添加颜色:
git config --global color.status auto
git config --global color.diff autogit config --global color.branch autogit config --global color.interactive auto详细参考:http://www.codesec.net/view/181168.html
设置SecuteCRT:Options==>Session Options==>Terminal==>Emulation 勾选上“ANSI Color"和”Use color scheme"。
12.远程设置,创建SSH Key:
ssh-keygen -t rsa -C "example@qq.com"
13.关联远程库
git remote add origin git@github.com:example/studyTP.git
14.推送到远程库
git push -u origin master(第一次推送)
以后就可直接:git push origin master
如果推送失败,可能是有冲突:
git pull 地址
下来解决冲突后再推送上去
15.关联远程库后,下载远程库的数据到本地
git pull 远程地址 master(本地的分支)