https://github.com/git/git
Revision 4b441f47cefe7f4861167a151a395606e1a16745 authored by Junio C Hamano on 07 January 2007, 10:17:52 UTC, committed by Junio C Hamano on 08 January 2007, 05:36:35 UTC
Sometimes, people have only fetch access into a bare repository
that is used as a back-up location (or a distribution point) but
does not have a push access for networking reasons, e.g. one end
being behind a firewall, and updating the "current branch" in
such a case is perfectly fine.

This allows such a fetch without --update-head-ok, which is a
flag that should never be used by end users otherwise.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 7d1864c
Raw File
Tip revision: 4b441f47cefe7f4861167a151a395606e1a16745 authored by Junio C Hamano on 07 January 2007, 10:17:52 UTC
git-fetch: allow updating the current branch in a bare repository.
Tip revision: 4b441f4
generate-cmdlist.sh
#!/bin/sh

echo "/* Automatically generated by $0 */
struct cmdname_help
{
    char name[16];
    char help[80];
};

struct cmdname_help common_cmds[] = {"

sort <<\EOF |
add
apply
archive
bisect
branch
checkout
cherry-pick
clone
commit
diff
fetch
grep
init-db
log
merge
mv
prune
pull
push
rebase
reset
revert
rm
show
show-branch
status
tag
EOF
while read cmd
do
     sed -n '
     /NAME/,/git-'"$cmd"'/H
     ${
            x
            s/.*git-'"$cmd"' - \(.*\)/  {"'"$cmd"'", "\1"},/
	    p
     }' "Documentation/git-$cmd.txt"
done
echo "};"
back to top