3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GitHubからソースを取得してみる

Posted at

GitHubからソースをgit cloneで取得するまでの流れです。

リポジトリのURLを取得します

GitHubでソースを取得したいリポジトリを表示して、画面右上の「Clone or download」ボタンをクリックします。表示されたURLをメモします。

gitをインストールします

今回はUbuntuで開発してるのでUbuntuでの操作となります。

# gitをインストールします
$ sudo apt-get update
$ sudo apt-get install git

# インストールの確認のためにバージョンを表示します
$ git --version
git version 2.17.1

GitHubからソースを取得します

srcフォルダ配下にプロジェクトを取得することとします。

# プロジェクトを配置したいフォルダへ移動
$ cd src
# ソースを取得する
$ git clone [URL]

ソースの確認

srcフォルダ配下にリポジトリ名でフォルダが作成され、ソースが取得されているはずです。

以上です。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?