修改示例换行问题

This commit is contained in:
Ivo Dai 2018-12-12 15:08:43 +08:00
parent eadbc34358
commit 96779326aa

View File

@ -70,16 +70,19 @@ 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 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 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
```