<div dir="ltr">Hi,<br><br>Just a word about using git on win32 for few days.<br><br>I am using msys-git ( I past the same link I saw in the gstreamer mailing list: <a href="http://code.google.com/p/msysgit/">http://code.google.com/p/msysgit/</a> ).<br>
It works pretty fine. <br>In GitBash the minimum vital commands are : git pull, git status, git add file, git commit -m &quot;msg&quot;, git push, git reset --hard HEAD.<br>And GitGUI is usefull to have a full view of logs and histories.<br>
<br>About using ssh, rsa and other stuffs, it was not so easy but the summary is short:<br>install putty, use puttygen gui to generate a .ppk file that contains pub and private keys.<br>(So you can use this .ppk through putty tools)<br>
Then you have two solutions to use it with git.<br>The easiest is to convert this ppk file : puttygen mykey.ppk -O private-openssh -o mykey<br>Then : ssh-add mykey<br>finally: git clonse ssh://<a href="http://username@server.org/git/stuff.git/">username@server.org/git/stuff.git/</a><br>
<br>Note that you can use this solution on linux too, if you want to re-use your .ppk file.<br><br>The second solution was to use the .ppk file through pageant when cloning.<br><br>Sincerely<br><br>J.<br></div>