//新建一个目录和文件,编辑文件后保存(目录名和GitHub仓库名一致)
mkdir Demo
cd Demo
touh readme.md
gedit readme.md
//设置使用 Git 时的姓名和邮箱地址
git config --global user.name "your_userid"
git config --global user.email "your_email"
//初始化仓库
git init
//将文件加入暂存区(文件夹内所有文件用 --all)
git add readme.md
//提交并添加索引
git commit -m "first commit"
//设置github远程仓库地址
git remote add origin https://github.com/username/Demo.git
//将暂存区文件推送到github仓库
git push -u origin master
//github仓库文件克隆到本地
git clone https://github.com/username/Demo.git