初始化仓库

git init

在你想创建仓库的目录下使用该命令,出现下面情况则成功

Initialized empty Git repository in /Users/michael/learngit/.git/

添加文件到仓库

git add 文件名

没有任何提示则成功

git commit -m "该次提交的说明"

该命令告诉git把文件提交到仓库,出现类似情况则成功

[master (root-commit) eaadf4e] wrote a readme file
1 file changed, 2 insertions(+)
create mode 100644 readme.txt

tips

当你使用git commit时它可能会告诉你

Author identity unknown

*** Please tell me who you are.

这个时候你需要补充你的信息

git config --global user.email "你的邮箱"
git config --global user.name "你的名字"

补充信息后,继续git commit即可通过

查看仓库状态

git status

当仓库中文件内容与上一次提交不同时会提醒你哪一个文件不同

git diff 文件名

该命令可以查看文件中哪一部分与上次提交不同

使用git diff查看文件改动后再提交到仓库就不容易出现什么问题了

查看历史版本

git log

该命令会罗列出最近到最远的提交日志