From 55de42cba6b48e8feb291b03f298cf45c27438e5 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 11 Jan 2019 20:00:42 +0100 Subject: [PATCH] Change git author name and email --- lib/storage/git_storage.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/storage/git_storage.dart b/lib/storage/git_storage.dart index 8e2b342c..24ff579d 100644 --- a/lib/storage/git_storage.dart +++ b/lib/storage/git_storage.dart @@ -46,8 +46,8 @@ class GitNoteRepository implements NoteRepository { await gitAdd(this.dirName, filePath); await gitCommit( gitFolder: this.dirName, - authorEmail: "noemail@example.com", - authorName: "Vishesh Handa", + authorEmail: "app@gitjournal.io", + authorName: "GitJournal", message: "Added Journal entry", ); @@ -67,9 +67,9 @@ class GitNoteRepository implements NoteRepository { await gitRm(this.dirName, filePath); await gitCommit( gitFolder: this.dirName, - authorEmail: "noemail@example.com", - authorName: "Vishesh Handa", - message: "Added Journal entry", + authorEmail: "app@gitjournal.io", + authorName: "GitJournal", + message: "Removed Journal entry", ); return result;