diff options
author | root <root@localhost> | 2013-01-11 11:01:06 +0300 |
---|---|---|
committer | root <root@localhost> | 2013-01-11 11:01:06 +0300 |
commit | d1fc6292a9de689807ec1797848d805fee059b79 (patch) | |
tree | 57021fc9f46ecf9540fdcdd044522950fec58378 | |
parent | 872e82a427c34d63bbe371e1cfc8390fa241d574 (diff) | |
download | git-remote-gcrypt-d1fc6292a9de689807ec1797848d805fee059b79.zip git-remote-gcrypt-d1fc6292a9de689807ec1797848d805fee059b79.tar.gz git-remote-gcrypt-d1fc6292a9de689807ec1797848d805fee059b79.tar.bz2 |
Group modifiable globals together
-rwxr-xr-x | git-remote-gcrypt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-remote-gcrypt b/git-remote-gcrypt index d1eafe9..347a132 100755 --- a/git-remote-gcrypt +++ b/git-remote-gcrypt @@ -11,17 +11,17 @@ set -e set -u -Did_find_repo= # yes for connected, no for no repo Localdir="${GIT_DIR:=.git}/remote-gcrypt" export GITCEPTION="${GITCEPTION:-}+" # Reuse $Gref except when stacked Gref="refs/gcrypt/gitception$GITCEPTION" Gref_rbranch="refs/heads/master" -Repoid= Packkey_bytes=33 # 33 random bytes for passphrase, still compatible if changed Hashtype=SHA256 # SHA512 SHA384 SHA256 SHA224 supported. Packpat="pack :*:" Manifestfile=91bd0c092128cf2e60e1a608c31e92caf1f9c1595f83f2890ef17c0e4881aa0a +Did_find_repo= # yes for connected, no for no repo +Repoid= Branchlist= Packlist= Keeplist= |