<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/INSTALL, branch v1.4.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.4.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.4.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2006-07-30T20:24:29Z</updated>
<entry>
<title>Merge branch 'jn/make'</title>
<updated>2006-07-30T20:24:29Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-07-30T20:24:29Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=2dcb927f37976ef5185cef5452516b170b14cd6c'/>
<id>urn:sha1:2dcb927f37976ef5185cef5452516b170b14cd6c</id>
<content type='text'>
* jn/make:
  Set datarootdir in config.mak.in
  Quote all calls to GIT_CONF_APPEND_LINE
  Typofix in configure.ac comment.
  configure.ac vertical whitespace usage cleanup
  autoconf: Checks for some programs
  autoconf: Checks for libraries
  autoconf: Checks for some library functions.
  autoconf: Checks for typedefs, structures, and compiler characteristics.
  autoconf: Preparing the way for autodetection
  Copy description of build configuration variables to configure.ac
  Teach make clean about configure and autoconf
  autoconf: Use autoconf to write installation directories to config.mak.autogen
</content>
</entry>
<entry>
<title>Assorted typo fixes</title>
<updated>2006-07-09T09:42:41Z</updated>
<author>
<name>Pavel Roskin</name>
<email>proski@gnu.org</email>
</author>
<published>2006-07-09T07:44:30Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=addf88e455f85bc6cfe0284b70aaad10b6d3486e'/>
<id>urn:sha1:addf88e455f85bc6cfe0284b70aaad10b6d3486e</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>autoconf: Use autoconf to write installation directories to config.mak.autogen</title>
<updated>2006-07-03T00:11:52Z</updated>
<author>
<name>Jakub Narebski</name>
<email>jnareb@gmail.com</email>
</author>
<published>2006-07-02T23:56:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=556677144b55aad8457851a9019e86c3676bd422'/>
<id>urn:sha1:556677144b55aad8457851a9019e86c3676bd422</id>
<content type='text'>
This is beginning of patch series introducing installation configuration
using autoconf (and no other autotools) to git. The idea is to generate
config.mak.autogen using ./configure (generated from configure.ac by running
autoconf) from config.mak.in, so one can use autoconf as an _alternative_ to
ordinary Makefile, and creating one's own config.mak. Local settings in
config.mak override generated settings in config.mak.autogen

This patch includes minimal configure.ac and config.mak.in, so one can set
installation directories using autoconf generated ./configure script
e.g. ./configure --prefix=/usr

Signed-off-by: Jakub Narebski &lt;jnareb@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Retire git-clone-pack</title>
<updated>2006-06-21T09:34:14Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-06-21T06:54:26Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=efc7fa5355da79326f92716eef37ddd71c7ec034'/>
<id>urn:sha1:efc7fa5355da79326f92716eef37ddd71c7ec034</id>
<content type='text'>
The program is not used by git-clone since git-fetch-pack was extended
to allow its caller do what git-clone-pack alone did, and git-clone was
updated to use it.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Rip out merge-order and make "git log &lt;paths&gt;..." work again.</title>
<updated>2006-03-01T09:45:50Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@osdl.org</email>
</author>
<published>2006-02-28T23:07:20Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=765ac8ec469f110e88376e4fac05d0ed475bcb28'/>
<id>urn:sha1:765ac8ec469f110e88376e4fac05d0ed475bcb28</id>
<content type='text'>
Well, assuming breaking --merge-order is fine, here's a patch (on top of
the other ones) that makes

	git log &lt;filename&gt;

actually work, as far as I can tell.

I didn't add the logic for --before/--after flags, but that should be
pretty trivial, and is independent of this anyway.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Mention install-doc in INSTALL</title>
<updated>2006-01-22T03:24:55Z</updated>
<author>
<name>J. Bruce Fields</name>
<email>bfields@fieldses.org</email>
</author>
<published>2006-01-21T23:54:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=eff351c957975055643f2e1359652ab3aac30256'/>
<id>urn:sha1:eff351c957975055643f2e1359652ab3aac30256</id>
<content type='text'>
I think most people will want to install the man pages as well.

[jc: incorporated Pasky's comment on not building them as root.
Some people may not want to install asciidoc/xmlto toolchain, so
redirect them to the man and html branches of the git.git
repository as well.]

Signed-off-by: J. Bruce Fields &lt;bfields@citi.umich.edu&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>[PATCH] Document config.mak in INSTALL.</title>
<updated>2005-12-05T21:19:39Z</updated>
<author>
<name>Jason Riedy</name>
<email>ejr@EECS.Berkeley.EDU</email>
</author>
<published>2005-12-05T18:38:30Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=cd8c4589473d2a6669cf882ebcd708a2d81e9168'/>
<id>urn:sha1:cd8c4589473d2a6669cf882ebcd708a2d81e9168</id>
<content type='text'>
The existing config.mak should satisfy almost everyone...  You
can change the prefix and other vars catch the new setting
anyways.  I had forgotten that ?= acts as = (lazy value binding)
and as not := (immediate value binding).

Signed-off-by: E. Jason Riedy &lt;ejr@cs.berkeley.edu&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>INSTALL: duplicate python requirements from Makefile</title>
<updated>2005-11-11T19:27:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-11-11T19:27:03Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3cab3594e9cfd5e98cbcb819b1bed91a7b3a974b'/>
<id>urn:sha1:3cab3594e9cfd5e98cbcb819b1bed91a7b3a974b</id>
<content type='text'>
... and refer the reader to Makefile for other things that can be
tweaked.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Update INSTALL</title>
<updated>2005-11-09T20:40:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-11-09T20:40:03Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=c44922a7817398d63bb2b46dc599bd05c710e746'/>
<id>urn:sha1:c44922a7817398d63bb2b46dc599bd05c710e746</id>
<content type='text'>
Explicitly mention how to install by hand in build-as-user and
install-as-root steps.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Document expat dependency when using http-push.</title>
<updated>2005-11-06T18:21:06Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-11-05T19:12:05Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3402f1d6a3d8f4205fe59286e3a1223a9d28aea6'/>
<id>urn:sha1:3402f1d6a3d8f4205fe59286e3a1223a9d28aea6</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
