pgintro.net

Git

作成日時:2018/06/01

更新日時:2018/06/01

スポンサーリンク

Git使い方

初期化

$ git init

コミット

$ git commit -m "コメント"

コミット失敗

$ git commit -m "コメント"

*** Please tell me who you are.

Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'user@host')

ステータス確認

$ git status

ログ確認

$ git log

全てバージョン管理下に追加

$ git add -A

ホスティングサービス