@@ -211,10 +211,12 @@ $ git fetch --tags <8>
211211
212212<1> repeat as needed.
213213<2> extract patches from your branch for e-mail submission.
214- <3> "pull" fetches from "origin" by default and merges.
215- <4> look at the changes since last time we checked, only in the
214+ <3> "pull" fetches from "origin" by default and merges into the
215+ current branch.
216+ <4> immediately after pulling, look at the changes done upstream
217+ since last time we checked, only in the
216218area we are interested in.
217- <5> fetch from a specific branch from a specific repository and and merge.
219+ <5> fetch from a specific branch from a specific repository and merge.
218220<6> revert the pull.
219221<7> garbage collect leftover objects from reverted pull.
220222<8> from time to time, obtain official tags from the "origin"
@@ -330,16 +332,18 @@ master, nor exposed as a part of a stable branch.
330332<8> and bundle topic branches still cooking.
331333<9> backport a critical fix.
332334<10> create a signed tag.
333- <11> make sure I did not accidentally rewound master beyond what I
335+ <11> make sure I did not accidentally rewind master beyond what I
334336already pushed out. "ko" shorthand points at the repository I have
335337at kernel.org, and looks like this:
336- $ cat .git/remotes/ko
337- URL: kernel.org:/pub/scm/git/git.git
338- Pull: master:refs/tags/ko-master
339- Pull: maint:refs/tags/ko-maint
340- Push: master
341- Push: +pu
342- Push: maint
338+ $ cat .git/remotes/ko
339+ URL: kernel.org:/pub/scm/git/git.git
340+ Pull: master:refs/tags/ko-master
341+ Pull: maint:refs/tags/ko-maint
342+ Push: master
343+ Push: +pu
344+ Push: maint
345+ In the output from "git show-branch", "master" should have
346+ everything "ko-master" has.
343347<12> push out the bleeding edge.
344348<13> push the tag out, too.
345349------------
@@ -357,8 +361,8 @@ and maintain access to the repository by developers.
357361 * gitlink:git-shell[1] can be used as a 'restricted login shell'
358362 for shared central repository users.
359363
360- * link:howto/update-hook-example.txt[update hook howto] has a
361- good example of managing a shared central repository.
364+ link:howto/update-hook-example.txt[update hook howto] has a good
365+ example of managing a shared central repository.
362366
363367
364368Examples
0 commit comments