diff --git a/lib/screens/githostsetup_screens.dart b/lib/screens/githostsetup_screens.dart index 012e0070..752b5419 100644 --- a/lib/screens/githostsetup_screens.dart +++ b/lib/screens/githostsetup_screens.dart @@ -298,7 +298,12 @@ class GitHostSetupScreenState extends State { } void _generateSshKey(BuildContext context) { - generateSSHKeys(comment: "GitJournal").then((String publicKey) { + var comment = "GitJournal " + + Platform.operatingSystem + + " " + + DateTime.now().toIso8601String().substring(0, 10); // only the date + + generateSSHKeys(comment: comment).then((String publicKey) { setState(() { this.publicKey = publicKey; _copyKeyToClipboard(context);