Skip to content
/ git Public
forked from git/git

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  Fix typo in remote set-head usage
  Makefile: hide stderr of curl-config test
  • Loading branch information
gitster committed Nov 26, 2012
2 parents f7d8e3d + d1eded4 commit 77b598b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1573,7 +1573,7 @@ else
REMOTE_CURL_NAMES = $(REMOTE_CURL_PRIMARY) $(REMOTE_CURL_ALIASES) REMOTE_CURL_NAMES = $(REMOTE_CURL_PRIMARY) $(REMOTE_CURL_ALIASES)
PROGRAM_OBJS += http-fetch.o PROGRAM_OBJS += http-fetch.o
PROGRAMS += $(REMOTE_CURL_NAMES) PROGRAMS += $(REMOTE_CURL_NAMES)
curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p) curl_check := $(shell (echo 070908; curl-config --vernum) 2>/dev/null | sort -r | sed -ne 2p)
ifeq "$(curl_check)" "070908" ifeq "$(curl_check)" "070908"
ifndef NO_EXPAT ifndef NO_EXPAT
PROGRAM_OBJS += http-push.o PROGRAM_OBJS += http-push.o
Expand Down
2 changes: 1 addition & 1 deletion builtin/remote.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static const char * const builtin_remote_rm_usage[] = {
}; };


static const char * const builtin_remote_sethead_usage[] = { static const char * const builtin_remote_sethead_usage[] = {
N_("git remote set-head <name> (-a | -d | <branch>])"), N_("git remote set-head <name> (-a | -d | <branch>)"),
NULL NULL
}; };


Expand Down

0 comments on commit 77b598b

Please sign in to comment.