logging - Show git logs for range of commits on remote server? -


i looking way query git server logs given range of commits. being svn user, i'm in wrong mindset im hoping git experts can help. i'm looking similar to:

svn log -r 5:20 --xml svn.myserver.com 

but git server. in other words, show me logs 5th commit through 20th commit. help.

first, since there no simple revision number git, specify revision mentioned in rev-parse command.

but command queries directly remote repo (without cloning or fetching data) git ls-remote, and:

  • it display sha1, not log message.
  • it works on ref patterns (head, tags, branches, ...), not revs.

since log can show diffstats , full diffs, cannot ask logs without @ least fetching remote in local repo.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -