1、空仓库master分支
git clone了一个空的远程仓库之后,git 默认就给我们创建了一个本地分支叫master:
$ git clone git@gitee.com:hongjiaheng/test_1.git
Cloning into 'test_1'...
warning: You appear to have cloned an empty repository.
$ cd test_1/
$ git status
On branch master
No commits yet
nothing to commit (create/copy files and use "git add" to track)
$ git