将暂存区文件提交到本地仓库,形成一个历史版本
git commit -m [提交时候的信息]
root@ZJJ MINGW64 /f/projectDemo (master)
$ git commit -m "我是第一次提交"
[master (root-commit) 7f17fee] 我是第一次提交 # 7f17fee这个就是版本号
1 file changed, 18 insertions(+) # 意思是1个文件改变,18行内容被插入
create mode 100644 hello.txt
$ git status
On branch master
nothing to commit, working tree clean # 意思是没有东西需要再次提交