Git のインストール

Git は、オープンソースなバージョン管理システムで、共同プロジェクトでの開発に非常に便利です。

The Sponge project, alongside thousands of other open-source projects, hosts its Git repositories on GitHub. Thus, Git is a crucial tool in the development of Sponge and SpongeAPI.

The Git website has substantial documentation, and their downloads page offers a range of options for GUI clients suitable for various operating systems.

ダウンロード

Windows

GitHub Desktop is an easy method of installing Git on Windows, because Git is included as a part of the software.

Git をインストールしたあと、コンピュータを再起動するのを推奨します。

Mac

There are a couple of ways to install Git on macOS.

最も簡単な方法は、 Xcode Command Line Toolsをインストールすることです。

警告

これらの手順はMavericks以前のバージョンで動作しているMacでは利用できません。もしMavesricks以前のOS Xを使用しているのなら、GitHubクライアントを代わりにインストールしてください。

  1. ターミナルを起動

  2. xcode-select --install を実行。

  3. それをインストールして、待っている間にクッキーを食べます。

  4. ターミナルから git を実行。

Alternatively, you can install GitHub Desktop. Git is available as a part of the GitHub Desktop installation.

Git をインストールしたあと、コンピュータを再起動するのを推奨します。

Linux や Unix

Linux で Git をインストールするもっともシンプルな方法は、 Linux ディストリビューションのパッケージマネージャを使用することです。

注釈

もしかしたら、 sudo を、コマンドの前につける必要があるかもしれません。

  1. ターミナルを起動

  2. Run apt-get install git if you are on an Ubuntu or Debian-based distribution. Run yum install git if you are on Fedora.

GitHub Desktop is currently not available for Linux, unlike Windows and Mac.

Git をインストールしたあと、コンピュータを再起動するのを推奨します。

セットアップ

あなたは誰?

Before you even start to work with git and the repository, make sure your git configuration has your identity set up. Open up your CLI and enter:

git config --list

Look for user.name and user.email. If they are not the same username and email as your GitHub account then set them:

git config --global user.name "John Doe"
git config --global user.email [email protected]

ちなみに

Do not proceed with any contribution in any Sponge repository until you establish your user.name and user.email.