PortableGit for Windows の入手といろいろ

更新: 2.xでURLがGitのRepositoryが変更になっていたので更新

基本fossilな人ですがたまにgitも必要なのでWindowsでgit環境を使うためにPortableGitを入れてます。

で、なんか Link切れてる記事が多いので覚書。

Downloadする場合は 以下のGithub Releasesから落とす。

https://github.com/git-for-windows/git/releases

現時点での最新は 2016/6/7のもの。リンクはLatestへのリンク。

https://github.com/git-for-windows/git/releases/latest

plink.exe/pageantを使ってssh接続したい場合は GIT_SSH 環境変数をplink.exeにする事

この設定をしてもユーザ名とパスワードを聞いてくる場合は https で remoteが設定されている。

git clone git@github.com:username/repo.git

としてcloneしておけば最初からgitになっている。

後から変えたい場合はgit remoteでurlを設定する。

git remote set-url git@github.com:username/repo.git

とする。