I am facing a weird issue during git rebase
I have a branch called Networkconfigs with two commits like C1 & C2, Now I want to rebase with master. conflicts are raising only on top of C1 changes. I am unable to see C2 changes during conflict resolution.
command used for rebase at Networkconfigs: git rebase master branch Networkconfigs At C1 commit I have a file : Sample.txt At C2 commit I have replace the Sample.txt with Result.txt during conflict resolution I can see the Sample.txt in Networkconfigs instead of Result.txt. But If I switched Networkconfigs C2 changes are present(i.e Result.txt existed)
git log -5 --graph --oneline NetworkConfigFiles * df3acf356 (origin/NetworkConfigFiles, NetworkConfigFiles) additional changes * d7bb7a5dc Incorporate the review comments * 5243f782f create Network config files * fb372f921 Incrementing build version to 2.0.2495.0 ***NO_CI*** * 89ce8a232 Incrementing build version to 2.0.2494.0 ***NO_CI*** conflicts are raising w.r.t 5243f782f
git log -5 --graph --oneline NetworkConfigs, and paste the output of that command ? (you can edit the messages or names you don't want to show in a public post on StackOverflow as you like, I'm mostly interested in the graph part)