git入门
参考资料:
https://git-scm.com/book/zh/v2 proGit 书
1. 安装git
https://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Git
2.使用git之前 需要做的最小配置
进入命令行模式,打开git bash
git config git 的config 命令帮助
git config –list 查看当前文件夹下,git 的配置
–global 使用的全局配置参数
–system 使用的用户的配置参数
–local 使用的仓库的配置参数
git 为什么这考虑呢?因为你可以有自已的demo项目(学习技术,github),你的电脑是个公有产品
设置提交时的名字与邮箱
git config –local user.name ‘xxx’
git config –local user.email ‘xxx@163.com‘
3. 暂存区与工作目录
tracked : 已跟踪
untracked : 未跟踪
https://git-scm.com/book/zh/v2/Git-%E5%9F%BA%E7%A1%80-%E8%AE%B0%E5%BD%95%E6%AF%8F%E6%AC%A1%E6%9B%B4%E6%96%B0%E5%88%B0%E4%BB%93%E5%BA%93
git add
git rm
git mv
4.查看历史提交
git log
git log -p 查看具体修改了什么(-是删除行,+是新增行)
git log -2 限制只输出最后两次提交
git log –pretty=oneline 更改原本输出格式为一行显示
git log –pretty=format:”%h - %an, %ar : %s” 更改原本输出格式为
git入门
http://hanqichuan.com/2020/03/30/git/git入门/