📢 Webサイト閉鎖と移転のお知らせ
このWebサイトは2026年9月に閉鎖いたします。
新しい記事は移転先で追加しております。(旧サイトでは記事を追加しておりません)
| 122行目: | 122行目: | ||
== Gitのインストール == | == Gitのインストール == | ||
以下の[https://github.com/git/git | 以下の[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 | ||