Skip to content

Commit 0a34fe8

Browse files
committed
Merge pull request #278 from liufangjie/master
Fix some error refer to #276
2 parents 42234cf + 6de2fc6 commit 0a34fe8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/03-git-branching/sections/remote-branches.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ image::images/remote-branches-5.png[远程跟踪分支 `teamone/master`。]
6060
==== 推送
6161

6262
(((pushing)))
63-
当想要与公开分享一个分支时,需要将其推送到有写入权限的远程仓库上。
63+
当你想要公开分享一个分支时,需要将其推送到有写入权限的远程仓库上。
6464
本地的分支并不会自动与远程仓库同步 - 你必须显式地推送想要分享的分支。
6565
这样,你就可以把不愿意分享的内容放到私人分支上,而将需要和别人协作的内容推送到公开分支。
6666

book/07-git-tools/sections/interactive-staging.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Git 自带的一些脚本可以使在命令行下工作更容易。
55
本节的几个互交命令可以帮助你将文件的特定部分组合成提交。
66
当你修改一组文件后,希望这些改动能放到若干提交而不是混杂在一起成为一个提交时,这几个工具会非常有用。
77
通过这种方式,可以确保提交是逻辑上独立的变更集,同时也会使其他开发者在与你工作时很容易地审核。
8-
如果运行 `git adds` 时使用 `-i` 或者 `--interactive` 选项,Git 将会进入一个交互式终端模式,显示类似下面的东西:
8+
如果运行 `git add` 时使用 `-i` 或者 `--interactive` 选项,Git 将会进入一个交互式终端模式,显示类似下面的东西:
99

1010
[source,console]
1111
----

0 commit comments

Comments
 (0)