aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-remote-gcrypt
diff options
context:
space:
mode:
authorroot <root@localhost>2013-02-14 00:00:00 +0000
committerroot <root@localhost>2013-02-14 00:00:00 +0000
commit8d5da3bc7e5209ec4052fdcdaec302bc09e12b3c (patch)
treeb930a5f2a884db08101031e2d3c203c84e40b7ea /git-remote-gcrypt
parent18e9ad1121da2534161b73b8bfd71742394be93c (diff)
downloadgit-remote-gcrypt-8d5da3bc7e5209ec4052fdcdaec302bc09e12b3c.tar.gz
Match just the manifest lines that start with sha-1 for the refs
Diffstat (limited to 'git-remote-gcrypt')
-rwxr-xr-xgit-remote-gcrypt2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-remote-gcrypt b/git-remote-gcrypt
index c2eea8f..89b6667 100755
--- a/git-remote-gcrypt
+++ b/git-remote-gcrypt
@@ -147,7 +147,7 @@ ensure_connected()
return
fi
MANIFESTDATA="$(GET_OR_EMPTY "$URL" manifest | DECRYPT)"
- BRANCHLIST=$(printf "%s\n" "$MANIFESTDATA" | (grep -v '^pack ' || :))
+ BRANCHLIST=$(printf "%s\n" "$MANIFESTDATA" | (grep -E '^[0-9a-f]{40}' || :))
PACKLIST=$(printf "%s\n" "$MANIFESTDATA" | (grep '^pack ' || :))
}