<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/builtin-commit-tree.c, branch v1.6.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://www.git.shady.money/git/atom?h=v1.6.2</id>
<link rel='self' href='https://www.git.shady.money/git/atom?h=v1.6.2'/>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/'/>
<updated>2008-09-10T22:25:46Z</updated>
<entry>
<title>commit_tree(): add a new author parameter</title>
<updated>2008-09-10T22:25:46Z</updated>
<author>
<name>Miklos Vajna</name>
<email>vmiklos@frugalware.org</email>
</author>
<published>2008-09-10T20:10:31Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=ee20a129de6f332da092e93feb2dd5f8330f9bc0'/>
<id>urn:sha1:ee20a129de6f332da092e93feb2dd5f8330f9bc0</id>
<content type='text'>
In case it's NULL, it is still determined automatically, but now you
have the ability to specify one yourself.

Signed-off-by: Miklos Vajna &lt;vmiklos@frugalware.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'ho/dashless'</title>
<updated>2008-09-10T05:57:35Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2008-09-10T05:57:35Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=a15a435ad394548fb6d22fa69f9a0e6db9752298'/>
<id>urn:sha1:a15a435ad394548fb6d22fa69f9a0e6db9752298</id>
<content type='text'>
* ho/dashless:
  Start conforming code to "git subcmd" style part 2
</content>
</entry>
<entry>
<title>Start conforming code to "git subcmd" style part 2</title>
<updated>2008-09-09T15:41:29Z</updated>
<author>
<name>Heikki Orsila</name>
<email>heikki.orsila@iki.fi</email>
</author>
<published>2008-09-09T10:28:30Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=05207a28818623e417b69f337a9e8604d799d09d'/>
<id>urn:sha1:05207a28818623e417b69f337a9e8604d799d09d</id>
<content type='text'>
User notifications are presented as 'git cmd', and code comments
are presented as '"cmd"' or 'git's cmd', rather than 'git-cmd'.

Signed-off-by: Heikki Orsila &lt;heikki.orsila@iki.fi&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2008-09-03T23:08:23Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2008-09-03T23:08:23Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=9b8ae93ad92efef59649a3a7c4bed162d2051059'/>
<id>urn:sha1:9b8ae93ad92efef59649a3a7c4bed162d2051059</id>
<content type='text'>
* maint:
  Start 1.6.0.2 maintenance cycle
  tests: use "git xyzzy" form (t7200 - t9001)
  tests: use "git xyzzy" form (t7000 - t7199)
  Fix passwd(5) ref and reflect that commit doens't use commit-tree
  improve handling of sideband message display
  tests: use "git xyzzy" form (t3600 - t6999)
  tests: use "git xyzzy" form (t0000 - t3599)
  checkout: fix message when leaving detached HEAD
  clone: fix creation of explicitly named target directory
  'git foo' program identifies itself without dash in die() messages
  setup_git_directory(): fix move to worktree toplevel directory
  update-index: fix worktree setup
  Start conforming code to "git subcmd" style
  read-tree: setup worktree if merge is required
  grep: fix worktree setup
  diff*: fix worktree setup

Conflicts:
	RelNotes
	t/t3900-i18n-commit.sh
	t/t7003-filter-branch.sh
</content>
</entry>
<entry>
<title>'git foo' program identifies itself without dash in die() messages</title>
<updated>2008-08-31T16:39:19Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2008-08-31T16:39:19Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=7e44c93558e7c0b12624d76cf07753d0480ed96a'/>
<id>urn:sha1:7e44c93558e7c0b12624d76cf07753d0480ed96a</id>
<content type='text'>
This is a mechanical conversion of all '*.c' files with:

	s/((?:die|error|warning)\("git)-(\S+:)/$1 $2/;

The result was manually inspected and no false positive was found.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Fix commit_tree() buffer leak</title>
<updated>2008-08-17T23:27:17Z</updated>
<author>
<name>Stephan Beyer</name>
<email>s-beyer@gmx.net</email>
</author>
<published>2008-08-11T22:35:11Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=ffa9fd957039902c9a08946d82ccb729a34ed68b'/>
<id>urn:sha1:ffa9fd957039902c9a08946d82ccb729a34ed68b</id>
<content type='text'>
The commit_tree() strbuf has a minimum size of 8k and it has not been
released yet.  This patch releases the buffer.

Signed-off-by: Stephan Beyer &lt;s-beyer@gmx.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-commit-tree: make it usable from other builtins</title>
<updated>2008-07-07T02:23:00Z</updated>
<author>
<name>Miklos Vajna</name>
<email>vmiklos@frugalware.org</email>
</author>
<published>2008-07-01T02:37:49Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=7b9c0a69a5f64fffb5de8b49a96f41ac35b4a84f'/>
<id>urn:sha1:7b9c0a69a5f64fffb5de8b49a96f41ac35b4a84f</id>
<content type='text'>
Move all functionality (except option parsing) from cmd_commit_tree() to
commit_tree(), so that other builtins can use it without a child
process.

Signed-off-by: Miklos Vajna &lt;vmiklos@frugalware.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>commit-tree: lift completely arbitrary limit of 16 parents</title>
<updated>2008-06-28T06:36:59Z</updated>
<author>
<name>Johannes Schindelin</name>
<email>Johannes.Schindelin@gmx.de</email>
</author>
<published>2008-06-27T12:24:47Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=ef98c5cafb3e799b1568bb843fcd45920dc62f16'/>
<id>urn:sha1:ef98c5cafb3e799b1568bb843fcd45920dc62f16</id>
<content type='text'>
There is no really good reason to have a merge with more than 16
parents, but we have a history of giving our users rope.

Combined with the fact that there was no good reason for that
arbitrary limit in the first place, here is an all-too-easy to fix.

Kind of wished-for by Len Brown.

Signed-off-by: Johannes Schindelin &lt;johannes.schindelin@gmx.de&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Provide git_config with a callback-data parameter</title>
<updated>2008-05-14T19:34:44Z</updated>
<author>
<name>Johannes Schindelin</name>
<email>Johannes.Schindelin@gmx.de</email>
</author>
<published>2008-05-14T17:46:53Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=ef90d6d4208a5130185b04f06e5f90a5f9959fe3'/>
<id>urn:sha1:ef90d6d4208a5130185b04f06e5f90a5f9959fe3</id>
<content type='text'>
git_config() only had a function parameter, but no callback data
parameter.  This assumes that all callback functions only modify
global variables.

With this patch, every callback gets a void * parameter, and it is hoped
that this will help the libification effort.

Signed-off-by: Johannes Schindelin &lt;johannes.schindelin@gmx.de&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Re-fix "builtin-commit: fix --signoff"</title>
<updated>2007-12-09T08:55:55Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2007-12-09T01:32:08Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=774751a8bc594a5b56039bbdc43c45e3882dd804'/>
<id>urn:sha1:774751a8bc594a5b56039bbdc43c45e3882dd804</id>
<content type='text'>
An earlier fix to the said commit was incomplete; it mixed up the
meaning of the flag parameter passed to the internal fmt_ident()
function, so this corrects it.

git_author_info() and git_committer_info() can be told to issue a
warning when no usable user information is found, and optionally can be
told to error out.  Operations that actually use the information to
record a new commit or a tag will still error out, but the caller to
leave reflog record will just silently use bogus user information.

Not warning on misconfigured user information while writing a reflog
entry is somewhat debatable, but it is probably nicer to the users to
silently let it pass, because the only information you are losing is who
checked out the branch.

 * git_author_info() and git_committer_info() used to take 1 (positive
   int) to error out with a warning on misconfiguration; this is now
   signalled with a symbolic constant IDENT_ERROR_ON_NO_NAME.

 * These functions used to take -1 (negative int) to warn but continue;
   this is now signalled with a symbolic constant IDENT_WARN_ON_NO_NAME.

 * fmt_ident() function implements the above error reporting behaviour
   common to git_author_info() and git_committer_info().  A symbolic
   constant IDENT_NO_DATE can be or'ed in to the flag parameter to make
   it return only the "Name &lt;email@address.xz&gt;".

 * fmt_name() is a thin wrapper around fmt_ident() that always passes
   IDENT_ERROR_ON_NO_NAME and IDENT_NO_DATE.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
