a branch?
Like, from testing, person1 created new_branch and made some commits (in that time some other people made changes to testing), person1 periodically merged testing into new_branch, in the end the new_branch was merged into testing. and after that other changes were made to testing.
Now how can I check which changes/commits were made in new_branch only?
Check commit history?
Yes but which commands or how to using gitlense
git log (Refer to the docs for parameters) Personally I prefer usin GitHub.com for this
git log shows all the other commits also which were made in other branches, as testing was merged periodically into that branch
you can pass parameters, please refer to the docs
https://git-scm.com/docs/git-log There are multiple options that I think would solve your problem
Обсуждают сегодня