1.工作区和版本库
2.git的安装和配置
- 进入git官网下载安装
- 用户信息配置
git config --global user.name yourname//将yourname替换成你的名字
git config --global user.email youremail//将youemail替换成你的邮箱
- 查看配置信息
git config --list
- 获取帮助
git help config
1.git init
- 创建仓库
- git目录默认隐藏,可用<code> ls -ah</code>查看
2.git clone 仓库地址
- 克隆远程仓库
3.git add .
- 将修改后的文件添加到暂存区
4.git commit -m "改动描述"
- 将暂存区文件提交到master分支
5.git push
- 将本地文件推送到远程仓库github的当前分支
6.git rm 文件名
- 删除对应文件
7.git status
- 查看当前仓库状态
8.git diff
- 查看具体修改的内容
9.git log
- 查看提交历史
10.git branch 分支名
- 创建分支
11.git branch
- 查看分支
12.git branch -d 分支名
- 删除分支
13.git checkout 分支名
- 切换分支
14.git merge 分支名
- 合并到当前分支分支
15.git remote
- 查看和添加远程仓库
16.git pull
- 拉取远程仓库代码
17.git stash
- 将工作空间恢复到最近一次提交,并将暂存区中的修改保存起来