Git初期設定メモ

gitでプロジェクトを作成したときに最初におこなうコマンド

cd /project_dir
git init
git remote add origin https://{git-remote-repsitory}/{project}.git
git add {testfile} ※適当なファイルを追加しておく
git commit -m "first commit"
git push -u origin master