diff options
author | SeekingFor <nobody@nowhere> | 2013-03-16 13:03:25 +0000 |
---|---|---|
committer | SeekingFor <nobody@nowhere> | 2013-03-16 13:03:25 +0000 |
commit | 9f2494b2b407053f1e4de294ff70e8a965e68b6e (patch) | |
tree | d4d37b49cc1356902ad47ffd77954e986398b6bb | |
parent | bc9d3d2e4df6d58d25cd686f335c480d4277d85a (diff) | |
download | resdb-9f2494b2b407053f1e4de294ff70e8a965e68b6e.tar.gz resdb-9f2494b2b407053f1e4de294ff70e8a965e68b6e.zip |
allow arguments for ./git-commit and ./gitd
-rwxr-xr-x | git-commit | 2 | ||||
-rwxr-xr-x | gitd | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 @@ -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 "$@" |