Git

git学习

参考资料: https://git-scm.com/book/zh/v2 http://igit.linuxtoy.org/contents.html git最基础操作 配置用户 git config --global user.email "user@gmail.com" git config --global user.name "user" 本地创建git管理的项目 mkdir git_study git init git status git log 创建文件并提交 echo "hello Git" > readme.txt git add readme.txt git status git commit -m "project init" git log 更改文件并提交 echo "Git is Cool" >> readme.txt git status git diff git add readme.txt git status git commit -m "Git is Cool" 在上边的操作我们可以发现,在一个Git项目中文件的状态大概分成下面的两大类,而第二大类又分为三小类: