Causam: Difference between revisions
(Created page with " ----------------------------------------- now how to get it working on windows... start with the setup in git-for-windows .ssh/config, here: C:\Users\Admin...") |
No edit summary |
||
Line 1: | Line 1: | ||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Set up a Windows client to use Stash ssh key | |||
|- | |||
| Use git-for-windows exclusively, it doesn't need putty. | |||
* Install Git for Windows, set it up to use its own ssh (not plink). | |||
* Set up this folder with .ssh configuration | |||
C:\Users\##user##\.ssh\config | |||
* Copy the .ssh folder from [https://www.dropbox.com/home/Power%20Analytics dropbox], the config looks like this: | |||
Host git.poweranalytics.io | |||
IdentityFile ~/.ssh/git.poweranalytics.io/id_rsa | |||
* Now you should be able to pull: | |||
cd C:\Michael's Data\development\power_analytics\gec | |||
git clone ssh://git@git.poweranalytics.io:7999/gec/pa-pdp-xiagent-csharp.git | |||
|} |
Revision as of 14:37, 22 April 2016
Set up a Windows client to use Stash ssh key |
---|
Use git-for-windows exclusively, it doesn't need putty.
C:\Users\##user##\.ssh\config
Host git.poweranalytics.io IdentityFile ~/.ssh/git.poweranalytics.io/id_rsa
cd C:\Michael's Data\development\power_analytics\gec git clone ssh://git@git.poweranalytics.io:7999/gec/pa-pdp-xiagent-csharp.git |