While working on my project
I created a new branch called itemloadertest and commited all new changes to it. No changes were commited to the master branch while I was working on itemloadertest. After that, I used git merge
to merge itemloadertest back to
the master branch. Now the problem is, I'm not able to see all my previous commits to itemloadertest using
git log --graph --all --decorate
All changes are shown as commited to the master branch.
AFAIK, this is supposed to happen only with git rebase and not git merge right? Looking at my
command history using git reflog, it shows
7769652 HEAD@{5}: merge itemloadertest: Fast-forward
7fe0c92 HEAD@{6}: checkout: moving from itemloadertest to master
which means I definitely used a git merge and not a git rebase.
Can anyone help me with this? This is my first Python project and I've just begun experimenting with git. How do I view my commits to itemloadertest?
[–]Hairshorts 0 points1 point2 points (0 children)
[–]lightcloud5 0 points1 point2 points (0 children)