更新情報(2018/08/14)
git for windows 2.14からは更新用のコマンドがあります。
詳しくはこちらを参照ください → [git]git for windowsのバージョンアップ
作業手順
Windowsのgitをバージョンアップした際の作業メモ。コマンドラインはpowershell。
結論から言えば、古いのをアンインストールして、新しいのをインストールすればOK。
-
念のため、設定ファイルを保存。
mkdir C:\work\gitfiles copy-item ~\.ssh C:\work\gitfiles/ -Recurse -Verbose copy-item ~\.gitconfig C:\work\gitfiles/.
- Explorerが起動しているぞといわれた。これWindowsのShellのやつだ。
タスクマネージャーからExplorerを殺した。案の定Windowsのシェルがなくなったが、gitのアンインストールは完了できた。
- Windowsシェルがないと不便なのでログインし直し(ログオフ→ログイン)
- https://msysgit.github.io/ から 1.9.5 のインストーラーをダウンロード。
- インストーラを起動してインストール開始。
「select component」で「Associate .git* configuration files with default text editor」「Associate .sh files to be run with Bash」のチェックは外した。
「Adjusting your Path environment」で「Use Git from the Windows Command Prompt」を選択。
「Configuring the line ending conversions」で「Checkout as-is, commit as-is」を選択。
- 簡単にテストしてみたところ、普通に使えてた。追加作業は不要のようだ。