# HG changeset patch # User SeekingFor # Date 1363439005 0 # Node ID 93106436f24fe02a2b7d94ff77d11542edf6f5d0 # Parent 0264f4b87684173173fee41a839ba0ba0dd2d53a allow arguments for ./git-commit and ./gitd diff -r 0264f4b87684 -r 93106436f24f git-commit --- a/git-commit Sat Mar 16 13:01:24 2013 +0000 +++ b/git-commit Sat Mar 16 13:03:25 2013 +0000 @@ -1,4 +1,4 @@ #!/bin/sh git add configure db doc git-commit gitd scripts contrib .gitignore -TZ=UTC git commit --date="`date -u +'%s'`" +TZ=UTC git commit --date="`date -u +'%s'`" "$@" test -x /usr/lib/git-core/git-update-server-info && /usr/lib/git-core/git-update-server-info diff -r 0264f4b87684 -r 93106436f24f gitd --- a/gitd Sat Mar 16 13:01:24 2013 +0000 +++ b/gitd Sat Mar 16 13:03:25 2013 +0000 @@ -1,4 +1,4 @@ #!/bin/sh repodir="$(dirname $0)" touch "$repodir"/.git/git-daemon-export-ok -exec git daemon --listen="$(cat "$repodir"/conf/gitd_ip)" --base-path="$(cat "$repodir"/conf/gitd_basepath)" --reuseaddr +exec git daemon --listen="$(cat "$repodir"/conf/gitd_ip)" --base-path="$(cat "$repodir"/conf/gitd_basepath)" --reuseaddr "$@"