Merge branch 'jk/asciidoctor-section-heading-markup-fix'
authorJunio C Hamano <gitster@pobox.com>
Wed, 14 Oct 2015 21:30:17 +0000 (14:30 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 14 Oct 2015 21:30:18 +0000 (14:30 -0700)
* jk/asciidoctor-section-heading-markup-fix:
Documentation: fix section header mark-up

1  2 
Documentation/git-bisect-lk2009.txt
Documentation/user-manual.txt
index 0f0c6ff0829dfab3bd45b34b76a5b489f648eba9,78b10659c5c4882002f18de9023a0468fb36149d..c06efbd42a6c1010f0a5ec17ba460e0ebcd91d9d
@@@ -119,7 -119,7 +119,7 @@@ developed and maintained during years o
  of people. And as there are often many people who depend (sometimes
  critically) on such software, regressions are a really big problem.
  
 -One such software is the linux kernel. And if we look at the linux
 +One such software is the Linux kernel. And if we look at the Linux
  kernel, we can see that a lot of time and effort is spent to fight
  regressions. The release cycle start with a 2 weeks long merge
  window. Then the first release candidate (rc) version is tagged. And
@@@ -132,7 -132,7 +132,7 @@@ regressions. And this time is more tha
  time. But this is not the end of the fight yet, as of course it
  continues after the release.
  
 -And then this is what Ingo Molnar (a well known linux kernel
 +And then this is what Ingo Molnar (a well known Linux kernel
  developer) says about his use of git bisect:
  
  _____________
@@@ -1321,7 -1321,7 +1321,7 @@@ So git bisect is unconditional goodnes
  _____________
  
  Acknowledgments
- ----------------
+ ---------------
  
  Many thanks to Junio Hamano for his help in reviewing this paper, for
  reviewing the patches I sent to the Git mailing list, for discussing
index 68978f53381baf1b179b70f22e97084893d5c227,c964a8b0d67cfb3ec9e179e73edf8d60b70b77e8..1b7987e73767f1c71d777909f3b275b5976419aa
@@@ -1200,7 -1200,7 +1200,7 @@@ for other users who clone your reposito
  If you wish the exclude patterns to affect only certain repositories
  (instead of every repository for a given project), you may instead put
  them in a file in your repository named `.git/info/exclude`, or in any
 -file specified by the `core.excludesfile` configuration variable.
 +file specified by the `core.excludesFile` configuration variable.
  Some Git commands can also take exclude patterns directly on the
  command line.  See linkgit:gitignore[5] for the details.
  
@@@ -3424,7 -3424,7 +3424,7 @@@ just missing one particular blob versio
  
  [[the-index]]
  The index
- -----------
+ ---------
  
  The index is a binary file (generally kept in `.git/index`) containing a
  sorted list of path names, each with permissions and the SHA-1 of a blob
@@@ -4230,9 -4230,9 +4230,9 @@@ Most of what `git rev-list` did is cont
  controls how and what revisions are walked, and more.
  
  The original job of `git rev-parse` is now taken by the function
 -`setup_revisions()`, which parses the revisions and the common command line
 +`setup_revisions()`, which parses the revisions and the common command-line
  options for the revision walker. This information is stored in the struct
 -`rev_info` for later consumption. You can do your own command line option
 +`rev_info` for later consumption. You can do your own command-line option
  parsing after calling `setup_revisions()`. After that, you have to call
  `prepare_revision_walk()` for initialization, and then you can get the
  commits one by one with the function `get_revision()`.