😎

[環境構築]Windowsに、Gitインストール。

2024/01/08に公開

Abstract

Gitのインストールめんどくさい。
ので、手順をなるだけ簡素に。

sakuraエディターインストール

gitインストールの途中で、defalut editorを聞いてくるのでインストールしておく。

gitインストール

  1. gitインストーラダウンロード
    https://gitforwindows.org/
  2. インストール
    1. Infomation -> Next押下
    2. Select Destination Location -> Next押下
    3. Select Components -> Next
    4. Select Start Menu Folder -> Next
    5. Chooseing the default editor use by Git
      -> Select other editor as Git's default editor
      -> C:\Program Files (x86)\sakura\sakura.exeを入力
      -> Next
    6. Adjusting the name of the initial branch in new repositories
      -> Let Git decide
      -> Next
      ※正直どっちでもいい
    7. Adjusting your PATH environment
      -> Git from the command line and also from 3rd-party software
      -> Next
      ※正直どれでもいい。後から変更できるし。
    8. Choosing the SSH executable
      -> User bundled OpenSSH
      -> Next
      ※正直どれでもいい。後から変更できるし。
    9. Choosing the OpenSSL library
      -> Use the OpenSSL library
      -> Next
      ※知らんし。正直どれでもいい。後から変更できるし。
    10. Connfiguring the line ending conversions
      -> Checkout as-is, commit as-is
      -> Next
      ※正直どれでもいい。後から変更できるし。
    11. Connfiguring the terminal emulator to use with git Bash
      -> Use Windows' default console window
      -> Next
      ※正直どれでもいい。後から変更できるし。
    12. Choose the default behavior of 'git pull'
      -> Fast-forword or merge
      -> Next
      ※正直どれでもいい。後から変更できるし。
    13. Choose a credential helper
      -> Git Credential Manager
      -> Next
      ※正直どれでもいい。後から変更できるし。
    14. Configuring extra options
      -> Next
      ※デフォルトでいい。後から変更できるし。
    15. Configuring experimental options
      -> Next
      ※デフォルトでいい。後から変更できるし。
    16. Install押下
       やっとインストールだよ。ふぃ~。
    17. Finish押下

ついでにTortoiseGitインストール

  1. TortoiseGitインストーラダウンロード
    https://tortoisegit.org/download/
  • for 64-bit Windowsのとこのやつ
  • Language Packs のJananese 64-Bitのやつ
  1. TortoiseGitインストール

    1. Welcome to the TortoiseGit x.xx.x.x(64 bit) Setup Wizard
      -> Next押下
    2. Information
      -> Next
    3. Choose SSH Client
      -> OpenSSH, Git default Client
      -> Next
    4. Custom Setup
      -> Next
    5. Ready to install
      -> Install
    6. Run first ~にチェックを入れたまま、Finish押下
    7. 新規にpopupが立ち上がるけど、そのまま放置して、TortoiseGit-LanguagePackをインストール。
  2. TortoiseGit-LanguagePackインストール

    1. ダウンロード済の Language Packs のJananese 64-Bitのやつをインストール
      1. TortoiseGit-LanguagePack-x.xx.x.x-64bit-ja.msiをダブルクリック。
    2. Japanese Lanuagepack for ToroiseGitセットアップウィザードへようこそ
      -> 次へ
    3. 完了押下
  3. TortoiseGitインストールに戻る。

    1. 7で放置したpopupに戻る。
      -> Refresh押下
    2. 日本語選択
      -> 次へ
    3. TortoiseGitへようこそ
      -> 次へ
    4. git.exeを設定
      -> デフォルトのまま次へ(今すぐチェックぐらいはしてもいい)

完了!!

Discussion