
To contribute/update this web page, see its Repository. Please look at the technical overview of the Git for Windows packaging and how to include your changes in your own custom installer. The Git for Windows SDK is a build environment that includes all the tools necessary for developers who want to contribute by writing code for Git for Windows. Issue Tracker Git for Windows SDK : Contributing Code If you've noticed a bug or simply have an idea that you'd like to see become real, why not work on it? Bug reports and feature requests are typically submitted to the issue tracker on our GitHub repository. There the roles of those involved in driving this project further down the road are described in detail. If you are interested in contributing to the Git for Windows project, have a look at the current governance model. Ĭould you check in your bash session (so not CMD) what value your $HOME environment variable is set? ~/.As an open source project, Git for Windows benefits greatly from both the volunteer work of helpful developers and good bug reports made by Git for Windows' users. For more information, see ' Generating a new SSH key and adding it to the ssh-agent. Some of the most common reasons are connecting to git repository and connecting to a Linux server. ' Generate a new SSH key and add it to your machine's SSH agent. Guides & Walkthroughs ssh key ssh linux ed25519 git windows 10 windows 1 1 1.9k Jared Busch Jan 17, 2021, 4:07 PM There are many reasons that you may need an SSH key setup on your system. For more information, see ' Checking for existing SSH keys. Your public key has been saved in /c/Users/VonC/.ssh/id_rsa.pub. Prerequisites Before adding a new SSH key to your account on, complete the following steps. Your identification has been saved in /c/Users/VonC/.ssh/id_rsa. That will create a %USERPROFILE%\.ssh\mykey and %USERPROFILE%\.ssh\mykey.pub.Īs a test, I just created my key without any problem (Seven Ultimate 64bits, msysgit 1.6.gcd48) $ ssh-keygen -C -t rsaĮnter file in which to save the key (/c/Users/VonC/.ssh/id_rsa):# just press enterĮnter passphrase (empty for no passphrase): You can use (from CMD or bash) ssh-keygen -C -t rsa -P "" -f ~/.ssh/mykey

Make sure you do not have a Windows environment variable named HOME, which would take precedence when using ssh.exe or ssh-keygen.exe commands from a CMD session (as opposed to a bash session). You can start with creating the expected folder, and check you can access it: mkdir "%USERPROFILE%\.ssh"
