Host Git Repositories on a Windows Share

I usually use BitBucket or GitHub to host my git repositories, but sometimes I need to host them on some internal network. In this post I will show you how to host those repositories on a Windows share. I’m going to cover two scenarios: 1) You already have a git repository 2) You are starting fresh with a brand new repository. For both of these tracks I’m going to assume that you already have a Windows share set up on some remote computer, and that you have the read and write permissions on that share....

June 24, 2013

Remove a Passphrase from a SSH Key

If you are using GitHub for Windows with non-GitHub repositories, you may have run into the limitation that you cannot sync using an SSH key with a passphrase. One workaround is to push/pull from the shell, but if don’t mind removing the passphrase from the key, use the following command. ssh-keygen -p -P "my_old_password" -N “” -f my_key_file_name After you remove the passphrase you should be able to sync from within the GitHub for Windows client....

February 4, 2013