To see list of commits:
git log
List of commits with file name & status:
git log --name-status
List of previous n commits
git log --name-status -n 2
List of commits by author name:
git log --name-status --author=Pritom (Case sensitive)
List of commits search by file name:
git log --name-status -n 2 --author=pritom | grep "Search"
git log
List of commits with file name & status:
git log --name-status
List of previous n commits
git log --name-status -n 2
List of commits by author name:
git log --name-status --author=Pritom (Case sensitive)
List of commits search by file name:
git log --name-status -n 2 --author=pritom | grep "Search"