LoginSignup
8
5

More than 5 years have passed since last update.

cloud9のgitを最新バージョンにする

Posted at

概要

cloud9のgitは1.9.1と古く、何かと作業効率が悪い。このため、gitの最新バージョンをインストールする。cloud9のOSはubuntuなので、ubuntuのgitのバージョンアップの手順をそのまま使う形となる。

手順

  1. ppaを追加する。
    sudo apt-get install python-software-common
    sudo add-apt-repository ppa:git-core/ppa
    sudo apt-get update

  2. gitを最新版にバージョンアップする。
    sudo apt-get install git

  3. gitのバージョンを確認する。
    git --version

以上でgitのバージョンが最新になります。

8
5
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
8
5