Github投稿 Push


1. git init 取り消し

$ rm -rf .git

2. Gitリポジトリの作成

$ git init

3. リポジトリへの登録

$ git add .

4. コミット

 $ git commit -m "first commit"

5. リモートリポジトリの登録

 $ git remote add origin <URLアドレス>

5. リモートリポジトリの確認

 $ git remote -v

6. リモートリポジトリに反映

 $ git push origin master