summaryrefslogtreecommitdiffstats
path: root/core/save-git.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-10-26 18:35:14 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-10-26 20:44:02 +0200
commitbd54e94606293ba37c7e52f5dfe530e6750d0804 (patch)
treed6386ff6d475ea93631675f2392265b90798f308 /core/save-git.c
parenta0c40833a46933ef78d6353d0c1f4af31cdb6677 (diff)
downloadsubsurface-bd54e94606293ba37c7e52f5dfe530e6750d0804.tar.gz
git save: remove redundant 'subsurface' from commit message
The user agent string already contains the (correctly capitalized) program name. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/save-git.c')
-rw-r--r--core/save-git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/save-git.c b/core/save-git.c
index 0f9da62f7..b77402657 100644
--- a/core/save-git.c
+++ b/core/save-git.c
@@ -1096,7 +1096,7 @@ static void create_commit_message(struct membuffer *msg)
} while ((dc = dc->next) != NULL);
put_format(msg, "\n");
}
- put_format(msg, "Created by subsurface %s\n", subsurface_user_agent());
+ put_format(msg, "Created by %s\n", subsurface_user_agent());
}
static int create_new_commit(git_repository *repo, const char *remote, const char *branch, git_oid *tree_id)