git-command-line-exercises-80
git-command-line-exercises-80 copied to clipboard
演習35 git rebase main の後、successfullyメッセージがこない
質問
(質問の記載をお願いします) git rebase main入力後 メッセージ:Current branch develop is up to date. となるのはどうしてでしょうか?
質問場所と質問内容
P.153, P154 演習35
演習35をダウンロードしたpractice35にて実施しております ログとしては下記のようになってます。 git rebase main入力後 メッセージ:Current branch develop is up to date. となります。 何かやり方が違ってますでしょうか? よろしくお願いします。
【ログ】==================== $ cd practice35 $ ls
$ git branch develop
- main
$ git log --graph --all --oneline
- 35eb339 (develop) commit for develop branch
- a6c6399 (HEAD -> main) commit for main branch
$ git switch develop Switched to branch 'develop'
$ git branch
- develop main
$ git rebase main Current branch develop is up to date.
$ git log --graph --all --oneline
- 35eb339 (HEAD -> develop) commit for develop branch
- a6c6399 (main) commit for main branch
$ git rebase main Current branch develop is up to date. =========================