Riverside Learning LABO(Skill/Idea/Code)

よりよいシステムのため工学系と人間系の学習下書きメモ

開発 環境再構築メモ3(lesson repository)

#githubで学習用リポジトリを作る

1.githubにログインする.
2.リポジトリの名前を決める
3.初期設定を必要に応じて変更する
4.リポジトリを作成する

echo "# Sandbox" >> README.md

git init
git add README.md

git commit -m "first commit"
git remote add origin https://github.com/user/Sandbox.git

git push -u origin master
…or push an existing repository from the command line