修改示例换行问题

This commit is contained in:
Ivo Dai 2018-12-12 15:09:56 +08:00
parent 96779326aa
commit 783939db92

View File

@ -70,19 +70,15 @@ Git 仓库目录是 Git 用来保存项目的元数据和对象数据库的地
# 新建项目示例
* 从命令行创建一个新的仓库,进入项目目录
```
git init
```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 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```