GitHub实际操作
$ mkdir git-tutorial
$ cd git-tutorial
$ git init
Initialized empty Git repository in F:/GitHub/git-tutorial/.git/$ git status
On branch master
Initial commit
nothing to commit (create/copy files and use "git add" to track)
$ touch README.md
$ git status
On branch master
Initial commit
Untracked files:
(use "git add <file>..." to include in what will be committed)
README.md
nothing added to commit but untracked files present (use "git add" to track)Last updated