#はじめに
RemoteでRepositoryを作る.つまりGithubにてRepositoryを新規作成.
#方法1
Localにgit cloneする.1番簡単
git clone https://github.com/username/repositoryname
その後プロジェクトを作成.
#方法2
Localでgitディレクトリを作る
remoteのdefault branchがmasterのとき. mainならmasterをmainにする.
mkdir hoge
cd hoge
git init
git remote add origin https://github.com/username/repositoryname
git pull origin master
その後hogeディレクトリにてプロジェクトを作成.
#その後
git add .
git commit -m 'initial commit'
git push origin master
のように続いて行く.