diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-09 17:05:55 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-10 09:53:24 -0700 |
commit | 53fb533a99eef94d5df1a5258bc23ec123f59d6d (patch) | |
tree | ebf363d619f3f27bc90b8d9fd2b06fea8593c53e /core/save-git.c | |
parent | 7a238b614685ce7d85b1a7564871e72c960bad89 (diff) | |
download | subsurface-53fb533a99eef94d5df1a5258bc23ec123f59d6d.tar.gz |
cloud-storage: create consistent commit message for merges
This never made sense and I think I just forgot to complete this code
when I first worked on it. Now we can see which version of Subsurface or
Subsurface-mobile created a merge.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/save-git.c')
-rw-r--r-- | core/save-git.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/save-git.c b/core/save-git.c index e3564eea7..aaf8d5742 100644 --- a/core/save-git.c +++ b/core/save-git.c @@ -1020,7 +1020,7 @@ int update_git_checkout(git_repository *repo, git_object *parent, git_tree *tree return git_checkout_tree(repo, (git_object *) tree, &opts); } -static int get_authorship(git_repository *repo, git_signature **authorp) +int get_authorship(git_repository *repo, git_signature **authorp) { if (git_signature_default(authorp, repo) == 0) return 0; |