LoginSignup
0
0

More than 3 years have passed since last update.

忘れやすいのでメモ用:Githubに新規リポジトリを作った際のリモート反映からpushまで

Posted at

まずは

$ echo "# READMEに書くやつ" >> README.md
$ git init
$ git add README.md
ここで大体addするのにgithubには書いてないのが不親切だよな
$ git add .
$ git commit -m "first commit"
$ git branch -M main
$ git remote add origin https://github.com/username/repository_name.git
$ git push -u origin main

ignoreを追加したい

$ vim .gitignore

ミスってGitの管理やめたい

$ rm -rf .git/
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