kokoichi206 / rails-prac

0 stars 0 forks source link

Ruby on Rails チュートリアル #3

Open kokoichi206 opened 2 years ago

kokoichi206 commented 2 years ago

https://railstutorial.jp/chapters/beginning?version=5.1#cha-beginning

Links

kokoichi206 commented 2 years ago

git

git checkout -b modify-README
git checkout master
# これだとひと繋がりになっちゃう!!
git merge modify-README
# --no-ff を指定したい!
git merge test_1 --no-ff
git branch -d modify-README

git rebase -i HEAD~2

settings

git remote add origin https://<github_token>@github.com/kokoichi206/rails-prac.git

git config --global core.editor vim
kokoichi206 commented 2 years ago

ローカルでマージ作業をしてた時、--no-ff をつけ忘れていたのでめっちゃ分かりにくいコミットになってしまった(ブランチ切った意味。。。)

Cloud9 で簡単に git-graph みたいなの見れたら気付けたのになぁ