学习资料:廖雪峰的Git教程 http://www.liaoxuefeng.com/
1.安装git for windows
下载 msysgit是Windows版的Git,从https://git-for-windows.github.io下载(国内镜像)
打开 Git Bash 表示安装成功
git config --global user.name “Your Name”
git config --global user.email "Your email“
git config --global
全局设置
2.创建版本库
生成空目录
mkdir repositoryname
新建目录
cd repositoryname
打开目录
pwd
显示当前目录
将目录git init
git init
将当前目录创建为仓库
ls -ah
显示.git目录
3.版本控制
向git暂存区中添加文件
git add
添加文件到暂存区(Stage)(一次只能添加一个文件 可反复使用)
git commit --m"提交描述"
提交文件提交到分支(可提交多个文件)
git status
查看仓库当前修改状态
git diff
查看修改内容
版本号与HEAD指针
git log
查看修改信息
git log --pretty=oneline
查看简化修改信息
commit id
版本号
HEAD
当前版本
HEAD^
上个版本
HEAD~100
向上一百个版本
git reset
回退命令
git reset--hard HEAD
回退到上个版本
git reset --hard commit_id
回退到对应id版本
git reflog
用户命令历史记录
撤销修改
git checkout --file
放弃工作区的修改
git reset HEAD file
放弃暂存区的修改
删除文件
rm file
删除文件(需git commit
提交一次
)
git checkout --file
放弃工作去修改 (相当于还原删除文件)
4.远程仓库
本地和github仓库交互
1.创建SSH Key
在用户主目录下查看.ssh目录。若没有,打开GIt Bash(for windows)
$ssh-keygen -t rsa -C "yourGithub@example.com"
创建SSH Key
然后查看.ssh目录,检查id_rsa
和id_rsa.pub
id_rsa
私钥
id_rsa.pub
公钥
2.登陆GIthub 创建"SSH Key"
Title 自定义
Key 填入id_rsa.pub
3.添加远程仓库
git remote add orgin git@github.com:yourGithub/yourRepoName.git
关联远程仓库git push -u origin master
将当前master
分支推送到远程库上(第一次)git push origin master
将当前master
分支推送到远程库上4.从远程库克隆到本地
git clone git@github.com:yourGitHub/yourRepoName.git
克隆本地库(最好是空目录)cd yourRepoName.git
打开新克隆下来的目录ls
查看文件Git支持多种协议,包括https,但通过ssh支持的原生git协议速度最快。
5.分支管理
创建、合并和删除分支
$git checkout -b yourBranch
创建并转到新分支
$git branch yourBranch
创建yourBranch
分支
$git checkout yourBranch
跳转到yourBranch
分支
git branch
列出所有分支
git merge yourBranch
将yourBranch
分支和并到你当前分支
git branch -d yourBranch
删除yourBranch
分支