diff options
author | Alexander Gavrilov <angavrilov@gmail.com> | 2008-10-15 13:28:20 +0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-11-01 16:01:23 -0700 |
commit | 98a6846bb8c5acb55d25d429954ec4ea2f4f320e (patch) | |
tree | 2b69482bd076a8d405bb3dc13ebf0a19592124c7 /git-gui.sh | |
parent | 7f15b0027392155f5b3260bb584ba37126232bf1 (diff) | |
download | git-98a6846bb8c5acb55d25d429954ec4ea2f4f320e.tar.gz git-98a6846bb8c5acb55d25d429954ec4ea2f4f320e.tar.xz |
git-gui: Add a dialog that shows the OpenSSH public key.
Generating a new SSH key or finding an existing one may
be a difficult task for non-technical users, especially
on Windows.
This commit adds a new dialog that shows the public key,
or allows the user to generate a new one if none were found.
Since this is a convenience/informational feature for new
users, and the dialog is mostly read-only, it is located
in the Help menu.
The command line used to invoke ssh-keygen is designed to
force it to use SSH_ASKPASS if available, or accept empty
passphrases, but _never_ wait for user response on the tty.
Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Acked-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'git-gui.sh')
-rwxr-xr-x | git-gui.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-gui.sh b/git-gui.sh index 4f951399f..e4d1f70f1 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -2536,6 +2536,10 @@ proc start_browser {url} { .mbar.help add command -label [mc "Online Documentation"] \ -command [list start_browser $doc_url] + +.mbar.help add command -label [mc "Show SSH Key"] \ + -command do_ssh_key + unset doc_path doc_url # -- Standard bindings |