git diff branch 1 branch 2
When looking at the differences in the above command, is there a way to look at only the differences in the parts that I modified in branch2?
git
Why don't you combine -p
and --author
of gitlog
?
git log-p --author=username
© 2024 OneMinuteCode. All rights reserved.