This is a tool for managing and organizing your SSH servers. Unlike PuTTY it doesn't include any connection logic, but integrates with ssh utility which should be installed on your system. It's perfect for dev teams allowing SSH configurations to be centrally stored on an internal server and shared across developers or entire tech departments.
Supported platforms: macOS, Linux, Windows.
- Download the latest version from the Releases section;
- Choose a binary file which matches your platform;
- Place the binary into your user's binary path;
- Optionally: rename
gg-${YOUR_PLATFORM_TYPE}togg. - If you're on Linux or macOS, ensure that the binary has execution permissions:
chmod +x gg
RPM and DEB packages are available in the releases section (these packages are not provided for pre-release builds).
Maintained externally by the open-source community.
Install goto-ssh-bin package. Also see the build file for additional details.
# Install goto
yay -S goto-ssh-binYou can install goto via Homebrew using a community tap:
brew tap grafviktor/goto
brew install --cask goto-ssh-managerThis installs the gg binary onto your system. Run it with:
ggThis video demonstrates how to set path to a remote SSH configuration, which is shared among team members.
Note: SSH Include directive is also supported. This allows you to create an access hierarchy - for example, a root configuration will be used by UNIX team, with leaf configurations distributed across specific departments. Please read more in this document.
Find more information about hosts grouping here. The video represents hosts grouped into categories such as Dev, Beta, and Prod.
Adjust hostname before connecting to it.
Note: you can only edit hosts loaded from yaml storage. Please see section 4.
Find more demos and uses cases here.
- Please see more information about hosts grouping in this document and ssh_config usage in that document.
- Also refer F.A.Q. page which provides additional configuration details and usage examples.
-f- specify the application home folder;gg -f /tmp/goto
-l- log verbosity level. Onlyinfo(default) ordebugvalues are currently supported;gg -l debug
-s- define an alternative SSH configuration file path for current session;gg -s /mnt/nfs_share/ssh/config
--set-ssh-config-path- set SSH configuration file path or url;gg --set-ssh-config-path https://company-repo/devops-team/ssh_config
-d- disable feature, only supported value is ssh_config;gg -d "ssh_config"-e- enable feature, only supported value is ssh_config;gg -e "ssh_config"--set-theme- set application color theme;gg --set-theme nord
-h- display help;-v- display version and configuration details.
GG_HOME- specify the application home folder;GG_LOG_LEVEL- set log verbosity level. Onlyinfo(default) ordebugvalues are currently supported.GG_SSH_CONFIG_FILE_PATH- define an alternative per-user SSH configuration file path.
2 file storages are supported:
- ssh_config - readonly storage type. Goto loads all hosts from your
~/.ssh/configfile. Seeman ssh_config, if you want to find out more about OpenSSH client configuration file. The application also supports remote ssh_config files. Please read SSH_CONFIG.md document for more details about ssh_config usage with GOTO. - yaml file - writable storage type, but supports less options than ssh_config. Please section 4.1 if you want to find out more about yaml file structure and its location.
You can only store your hosts in a yaml file, which is called hosts.yaml. The file is located in your user config folder which exact path depends on a running platform:
- on Linux, it's in
$XDG_CONFIG_HOME/gotoor$HOME/.config/goto; - on Mac, it's in
$HOME/Library/Application Support/goto; - on Windows, it's in
%AppData%\goto.
Usually you don't need to edit this file manually, but sometimes it's much more convenient to edit it with help of your favorite text editor, than using goto utility. The file structure is very simple and self-explanatory:
- host:
title: kernel.org
description: Server 1
address: 127.0.0.1
- host:
title: microsoft.com
description: Server 2
address: 127.0.0.1
network_port: 22
username: satya
identity_file_path: /home/user/.ssh/id_rsa_microsoft- Application may not start on Windows platform if your terminal is set to use legacy console. Either disable legacy console mode or run terminal session manually and then start the application from the inside. Google "how to disable legacy console on windows" for more details.
- On Windows, copying your SSH public key to a remote host using the
tshortcut may fail if the remote host does not already have a~/.sshdirectory. In that case, log in to the remote host, create the directory manually, and set the correct permissions (chmod 700 ~/.ssh). Once the directory is in place, retry the key-copy operation. - If your
ssh_configuses theIncludedirective with a double asterisk, for example:the application will not be able to locate those files. The current workaround is to specify each folder separately, similar to this:Include .../conf.d/**/*.confInclude .../conf.d/folder1/*.conf Include .../conf.d/folder2/*.conf
6. F.A.Q.
8. Changelog
9. License
- To people who find time to contribute whether it is a bug report, a feature or a pull request.
- To Charmbracelet project for the glamorous Bubbletea library.
- To JetBrains Team for their support for Open-Source community and for the amazing products they make. That is a great boost indeed. I'm proudly placing their logo here as a humble "Thank You" gesture.


