将暂存区文件提交到本地仓库,形成一个历史版本

git commit -m [提交时候的信息]

  1. root@ZJJ MINGW64 /f/projectDemo (master)
  2. $ git commit -m "我是第一次提交"
  3. [master (root-commit) 7f17fee] 我是第一次提交 # 7f17fee这个就是版本号
  4. 1 file changed, 18 insertions(+) # 意思是1个文件改变,18行内容被插入
  5. create mode 100644 hello.txt
  1. $ git status
  2. On branch master
  3. nothing to commit, working tree clean # 意思是没有东西需要再次提交