diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-08-24 13:59:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-08-25 10:44:10 -0700 |
commit | 449ba2876fd8d41262b440270e804a2f5acfbc12 (patch) | |
tree | 81d2865466eb467218c0d30bc48b364e8b5c9fa5 /git-access.c | |
parent | 39863089ed707cd58ae5ccfa700590f4e9248c4c (diff) | |
download | subsurface-449ba2876fd8d41262b440270e804a2f5acfbc12.tar.gz |
Cloud storage: test offline operation
All this really does is make sure that the fast forward works if the local
cache has received updates that haven't made it to the server, yet.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'git-access.c')
-rw-r--r-- | git-access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-access.c b/git-access.c index 36309fa42..9c5b703a2 100644 --- a/git-access.c +++ b/git-access.c @@ -45,7 +45,7 @@ git_branch_create(out, repo, branch_name, target, force) #endif -static char *get_local_dir(const char *remote, const char *branch) +char *get_local_dir(const char *remote, const char *branch) { SHA_CTX ctx; unsigned char hash[20]; |