<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/technical, branch v1.6.4</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.6.4</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.6.4'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2009-06-10T06:46:47Z</updated>
<entry>
<title>technical/api-remote: Describe new struct remote member pushurl</title>
<updated>2009-06-10T06:46:47Z</updated>
<author>
<name>Michael J Gruber</name>
<email>git@drmicha.warpmail.net</email>
</author>
<published>2009-06-09T16:01:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=056724c6240ce79ff5ef4e91191bf7366dadba88'/>
<id>urn:sha1:056724c6240ce79ff5ef4e91191bf7366dadba88</id>
<content type='text'>
...and pushurl_nr

Signed-off-by: Michael J Gruber &lt;git@drmicha.warpmail.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>parse-opts: add OPT_FILENAME and transition builtins</title>
<updated>2009-05-25T08:07:33Z</updated>
<author>
<name>Stephen Boyd</name>
<email>bebarino@gmail.com</email>
</author>
<published>2009-05-23T18:53:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=df217ed6430efe444a09fffdafd39720ae3f9864'/>
<id>urn:sha1:df217ed6430efe444a09fffdafd39720ae3f9864</id>
<content type='text'>
Commit dbd0f5c (Files given on the command line are relative to $cwd,
2008-08-06) introduced parse_options_fix_filename() as a minimal fix.
OPT_FILENAME is intended to be a more robust fix for the same issue.
OPT_FILENAME and its associated enum OPTION_FILENAME are used to
represent filename options within the parse options API.

This option is similar to OPTION_STRING. If --no is prefixed to the
option the filename is unset. If no argument is given and the default
value is set, the filename is set to the default value. The difference
is that the filename is prefixed with the prefix passed to
parse_options() (or parse_options_start()).

Update git-apply, git-commit, git-fmt-merge-msg, and git-tag to use
OPT_FILENAME with their filename options. Also, rename
parse_options_fix_filename() to fix_filename() as it is no longer
extern.

Signed-off-by: Stephen Boyd &lt;bebarino@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>parse-opts: prepare for OPT_FILENAME</title>
<updated>2009-05-25T08:07:25Z</updated>
<author>
<name>Stephen Boyd</name>
<email>bebarino@gmail.com</email>
</author>
<published>2009-05-23T18:53:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=377829201783b8a648e07af6ce7d747e0f45dc19'/>
<id>urn:sha1:377829201783b8a648e07af6ce7d747e0f45dc19</id>
<content type='text'>
To give OPT_FILENAME the prefix, we pass the prefix to parse_options()
which passes the prefix to parse_options_start() which sets the prefix
member of parse_opts_ctx accordingly. If there isn't a prefix in the
calling context, passing NULL will suffice.

Signed-off-by: Stephen Boyd &lt;bebarino@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'rs/grep-parseopt'</title>
<updated>2009-05-23T08:38:32Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-05-23T08:38:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=104d3794481c83f8db00ccf85134fc55c76852f9'/>
<id>urn:sha1:104d3794481c83f8db00ccf85134fc55c76852f9</id>
<content type='text'>
* rs/grep-parseopt:
  grep: make callback functions static
  grep: use parseopt
  grep: remove global variable builtin_grep
  parseopt: add PARSE_OPT_NODASH
  parseopt: add OPT_NUMBER_CALLBACK
  parseopt: add OPT_NEGBIT
</content>
</entry>
<entry>
<title>api-parse-options.txt: use 'func' instead of 'funct'</title>
<updated>2009-05-16T18:47:10Z</updated>
<author>
<name>Stephen Boyd</name>
<email>bebarino@gmail.com</email>
</author>
<published>2009-05-16T09:24:44Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=ca156cfcc2dee5a1cee4f96023bb2f8c15a2c48c'/>
<id>urn:sha1:ca156cfcc2dee5a1cee4f96023bb2f8c15a2c48c</id>
<content type='text'>
Signed-off-by: Stephen Boyd &lt;bebarino@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>parseopt: add OPT_NUMBER_CALLBACK</title>
<updated>2009-05-09T07:29:47Z</updated>
<author>
<name>René Scharfe</name>
<email>rene.scharfe@lsrfire.ath.cx</email>
</author>
<published>2009-05-07T19:45:08Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e0319ff5ed2b7927302389181449dcd029a26622'/>
<id>urn:sha1:e0319ff5ed2b7927302389181449dcd029a26622</id>
<content type='text'>
Add a way to recognize numerical options.  The number is passed to
a callback function as a string.

Signed-off-by: Rene Scharfe &lt;rene.scharfe@lsrfire.ath.cx&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>parseopt: add OPT_NEGBIT</title>
<updated>2009-05-09T07:28:53Z</updated>
<author>
<name>René Scharfe</name>
<email>rene.scharfe@lsrfire.ath.cx</email>
</author>
<published>2009-05-07T19:44:17Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=2f4b97f91071f5060bf2da482cf8b0d70486d808'/>
<id>urn:sha1:2f4b97f91071f5060bf2da482cf8b0d70486d808</id>
<content type='text'>
Add OPTION_NEGBIT and OPT_NEGBIT, mirroring OPTION_BIT and OPT_BIT.
OPT_NEGBIT can be used together with OPT_BIT to define two options
that cancel each other out.

Note: this patch removes the reminder from the test script because
it adds a test for --no-or4 and there already was one for --or4.

Signed-off-by: Rene Scharfe &lt;rene.scharfe@lsrfire.ath.cx&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2009-04-28T07:46:39Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-28T07:46:39Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b79376cdf3bd6ee922261776613d085a7b36ffd9'/>
<id>urn:sha1:b79376cdf3bd6ee922261776613d085a7b36ffd9</id>
<content type='text'>
* maint:
  grep: fix segfault when "git grep '('" is given
  Documentation: fix a grammatical error in api-builtin.txt
  builtin-merge: fix a typo in an error message
</content>
</entry>
<entry>
<title>Merge branch 'maint-1.6.1' into maint</title>
<updated>2009-04-28T07:46:25Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-28T07:46:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=2254da06a5473ffde973337bad2c6a96eea61e20'/>
<id>urn:sha1:2254da06a5473ffde973337bad2c6a96eea61e20</id>
<content type='text'>
* maint-1.6.1:
  grep: fix segfault when "git grep '('" is given
  Documentation: fix a grammatical error in api-builtin.txt
  builtin-merge: fix a typo in an error message
</content>
</entry>
<entry>
<title>Merge branch 'maint-1.6.0' into maint-1.6.1</title>
<updated>2009-04-28T07:46:20Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-28T07:46:20Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3e73cb2f48cc4044905455a9936692f967a0f9b3'/>
<id>urn:sha1:3e73cb2f48cc4044905455a9936692f967a0f9b3</id>
<content type='text'>
* maint-1.6.0:
  grep: fix segfault when "git grep '('" is given
  Documentation: fix a grammatical error in api-builtin.txt
  builtin-merge: fix a typo in an error message
</content>
</entry>
</feed>
