2019-09-05から1日間の記事一覧

gitでブランチきってマージするまで

Git

時々ど忘れしてしまうので、自分用にメモ。 > git branch * develop master > git checkout -b feature/specHoge Switched to a new branch 'feature/specHoge' # なんやかんや > git checkout develop Switched to branch 'develop' > git merge feature/sp…