#gitコマンド
##gitクローン
git clone [リポジトリ] [ディレクトリ]
git clone
https://github.com/ユーザID/ディレクトリ.git copy
##ローカルリポジトリを作成
git init
##インデックスに追加
git add .
##コミット
git commit -m “コメント記載”
##リポジトリのURLを指定します。
$ git remote add origin https://github.com/ユーザーID/push_test.git
##プッシュ
git push origin master
git push -f origin master
##プル
git pull origin master