Git

GitHub for Windows Shell が凄い便利

GitHub for Windows からインストール出来ます。GUI でも操作出来るんですが、コマンドに対応した操作が良くわからないので shell を使ってます。 shell は PowerShell です。なので bash に慣れていない Windows ユーザーにも安心ですね。 で、この PowerSh…

git clone で ssh プロトコルを利用する際に、キーファイルを id_rsa 以外の名前にしたいとき

Gerrit を構築中にハマったのでメモ $HOME/.ssh/config に以下を記載(config ファイルがなければ作成する Host <hostname> PreferredAuthentications publickey IdentityFile /c/work/home/.ssh/id_rsa_pronama これで、 git clone ssh://<user>@<hostname>:29418/<project> で clone 出来ました</project></hostname></user></hostname>…