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;