1
0

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 3 years have passed since last update.

Mac に Git を導入して Github に反映するまで

Last updated at Posted at 2019-11-21

Mac に Git を導入し、 Github に反映するまでの方法のメモ

Git とは

バージョン管理システム

Github とは

Gitの仕組みを利用して、プログラムコードやデザインデータなどを保存、公開することができるようにしたウェブサービス

Git の導入方法

git --version

terminaliTerm で上のコマンドを入力して、バージョンが表示されたら既に Git がインストールされているので、以下の1.および2.は不要。その場合は3.から始める。

  1. Homebrew (macOS用パッケージマネージャー) をインストール

    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    
  2. Git をインストール

    brew install git
    

    インストールできたら試しにバージョン確認してみる

    git --version
    
  3. Git の初期設定

    git config --global '[ユーザー名]'
    git config --global '[メールアドレス]'
    
  4. ローカルレポジトリ (Mac内のフォルダ) をGitで管理する

    cd [レポジトリ名]
    git init
    
  5. Github で新しいレポジトリを作成する

    1. Github > Repositories > new にアクセス
    2. リモートレポジトリ名を Rpository name に入力 ( Owner には既にログインアカウント名が入っている )
    3. Create repository をクリック
      github.jpg
  6. 既存のローカルレポジトリをリモート (Github) に反映させる

    git remote add origin https://github.com/toshikisugiyama/[レポジトリ名].git
    git push -u origin master
    

作業の進め方

  1. ローカルの master を最新のリモートの master に合わせる
  2. master からブランチを切る
  3. 変更を加える
  4. 変更を加えたファイルをステージングする
  5. ステージングしたファイルをコミットする
  6. コミットした変更をリモートに反映させる

よく使うコマンド

ローカルの master を最新に合わせる

git pull origin master

新しいブランチを切る

git checkout -b [ブランチ名]

変更したファイルを全てステージングする

git add .

. は全てのファイルを意味します。
各ファイルを個別に指定してステージングしたい場合は、

git add [ファイル名]

です。

このとき、ステージングされていないファイルを調べるためには、

git status -sb

で作業状況を確認できる。

  • git status は作業状況を確認するコマンド
  • -sgit status で出てくる表示を短くするオプション
  • -b は現在のブランチも表示させるオプション
  • -s-b を合わせて -sb

ちなみに、間違えてステージングした場合は、

git reset [ファイル名]

で戻せる。


ステージングしたファイルをコミットする

git commit -m '[コミットメッセージ]'

『コミットしてしまったけど、このファイルの変更もさっきのコミットに入れておきたかった!』 という場合は、

git add [さっきのコミットに入れておきたかった変更のあるファイル名]
git commit --amend --no-edit

コミットの履歴を確認する場合は、

git log --oneline --graph
  • --oneline オプションを付けることで、各コミットが1行で表示される
  • --graph オプションを付けることで、図のように見やすく表示される
  • 直近の何件かのコミットだけ表示させたい場合は、 -件数オプションも使える。 件数 には数字を入れる。

コミットした変更をリモートに反映させる

git push origin head

他のコマンドやそれぞれのコマンドのオプションを調べたい場合は、

git --help

git add --help
git commit --help
git push --help

などで確認できる。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?