git log --oneline 7de7970..master
OR
git log --oneline 7de7970..4cb34a9
Above command will give all logs between commit A and commit B including commit A and commit B.
git log --oneline 7de7970..master
OR
git log --oneline 7de7970..4cb34a9
Above command will give all logs between commit A and commit B including commit A and commit B.
@dimovnike
You can compare on github like this:
https://github.com/user/repository/compare/commit1..commit2
Is there a way to only get logs between commit A and commit B, including commit A and excluding commit b?
In the git log --oneline abcdefg..master, I only want to see changes added to master, not including the master commit.
@dimovnike
You can compare on github like this:
https://github.com/user/repository/compare/commit1..commit2
thanks!
Is there a way to only get logs between commit A and commit B, including commit A and excluding commit b?
In the git log --oneline abcdefg..master, I only want to see changes added to master, not including the master commit.
Try: git log --oneline ^master master... abcdefg
is there a way to do this on the github.com site? (without having to clone the repository)