Lets assume that I have a branch called A and I committed my changes 5 times,
how can I get all the 5 hashes from branch A,
git log
its not helping because its from long time ago and I cant find it…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The notation
..allows to see commits fromAthat are not inmaster, that is the commits that only belong to master.To get only the hashes use the
--format=%Hoption to this command.