Skip to content

Commit

Permalink
校正语句
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Dec 14, 2015
1 parent 5de4e71 commit f4123ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion git-workflows-and-tutorials/workflow-centralized.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ git push
# 原文用的命令是 git push origin master
#
# 主流的git版本,可以省略后面2个参数:远程仓库别名、推送分支,
# 因为这个参数缺省分别就是 origin 、 当前分支(本文目前的示例就是master)。
# 因为这2个参数缺省分别就是 origin 、 当前分支(本文目前的示例就是master)。
# 这样的用法更简单自然,我平时就是这么用的。
```

Expand Down
2 changes: 1 addition & 1 deletion git-workflows-and-tutorials/workflow-feature-branch.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ git checkout -b marys-feature
# 原文用的命令是 git checkout -b marys-feature master
#
# 主流的git版本,可以省略后一个参数:基于哪个分支新建分支,
# 因为这个参数缺省分别就是 当前分支(本文目前的示例就是master)。
# 因为这个参数缺省就是 当前分支(本文目前的示例就是master)。
# 这样的用法更简单自然,我平时就是这么用的。
```

Expand Down

0 comments on commit f4123ef

Please sign in to comment.