LoginSignup
0
0

More than 5 years have passed since last update.

memo

Posted at

リポジトリの初期設定

echo "# README" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/ユーザー名/リポジトリ名.git
git push -u origin master

commitとpush

例)READMEに追加してcommit&push

echo "spam" >> README.md
git add README.md
git commit -m README.md
git push
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0