「インストール - Git」の版間の差分

ナビゲーションに移動 検索に移動
122行目: 122行目:


== Gitのインストール ==
== Gitのインストール ==
以下の[https://github.com/git/git/releases GitHubのWebサイト]にアクセスして、Gitのソースコードをダウンロードする。<br>
以下の[https://github.com/git/git GitHubのWebサイト]にアクセスして、Gitのソースコードをダウンロードする。<br>
または、<code>wget</code>コマンドでGitのソースコードをダウンロードする。<br>
または、<code>wget</code>コマンドでGitのソースコードをダウンロードする。<br>
  wget https://github.com/git/git/archive/<バージョン>.tar.gz
  wget https://github.com/git/git/archive/<バージョン>.tar.gz
136行目: 136行目:
  mkdir build && cd build
  mkdir build && cd build
   
   
  ../configure prefix=<Gitのインストールディレクトリ>
  ../configure prefix=<Gitのインストールディレクトリ> --with-python --with-perl --with-libpcre2
  make -j $(nproc) all
  make -j $(nproc) all
  make install
  make install

案内メニュー