Staging
v0.5.1
https://github.com/git/git
Revision 6fe5b7ff6cafcc94415deba2f3d611770d8e6b1e authored by Junio C Hamano on 02 October 2006, 07:43:52 UTC, committed by Junio C Hamano on 02 October 2006, 07:43:52 UTC
Although most people would have one after colon if only for
readability, we never required it in git-parse-remote, so let's
not require one only in git-push.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 4fddf57
Raw File
Tip revision: 6fe5b7ff6cafcc94415deba2f3d611770d8e6b1e authored by Junio C Hamano on 02 October 2006, 07:43:52 UTC
git-push: .git/remotes/ file does not require SP after colon
Tip revision: 6fe5b7f
config.mak.in
# git Makefile configuration, included in main Makefile
# @configure_input@

CC = @CC@
AR = @AR@
TAR = @TAR@
#INSTALL = @INSTALL@		# needs install-sh or install.sh in sources

prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
#gitexecdir = @libexecdir@/git-core/
datarootdir = @datarootdir@
template_dir = @datadir@/git-core/templates/
GIT_PYTHON_DIR = @datadir@/git-core/python

mandir=@mandir@

srcdir = @srcdir@
VPATH = @srcdir@

export exec_prefix mandir
export srcdir VPATH

back to top