修改示例换行问题

This commit is contained in:
Ivo Dai 2018-12-12 15:07:10 +08:00
parent 86f669ba60
commit eadbc34358

View File

@ -71,14 +71,14 @@ Git 仓库目录是 Git 用来保存项目的元数据和对象数据库的地
# 新建项目示例
* 从命令行创建一个新的仓库,进入项目目录
> git init
git add README.md
git commit -m "first commit"
git remote add origin http://git.shao5.net/dsw0000/user_guide.git
git push -u origin master
> git add README.md
> git commit -m "first commit"
> git remote add origin http://git.shao5.net/dsw0000/user_guide.git
> git push -u origin master
* 从命令行推送已经创建的仓库,进入项目目录
> git remote add origin http://git.shao5.net/dsw0000/user_guide.git
git push -u origin master
> git push -u origin master