#初期設定
名前の設定
$ git config --global user.name "name"
メールアドレスの設定
$ git config --global user.email "email@email.com"
設定の確認
$ less ~/.gitconfig
#ファイル作成
ファイル作成
$ mkdir failname
作成したファイルへ移動
$ cd failname
初期化(gitの管理下におく)
$ git init
ファイル作成
#ステージする
ワークツリーの状況確認
$ git status
ステージする
$ git add ファイル名
#コミットする
インデックスの状況確認
$ git status
コミットする
git commit -m "コメント"
コミット履歴確認
git log
#プッシュする
Githubで新規リポジトリつくる
リモートリポジトリの登録
$ git remote add origin 上記で作成した
URL
リモートの状況確認
$ git remote -v
リモートリポジトリへプッシュ
$ git push origin master