Show git logs for range of commits on remote server?

前端 未结 2 594
甜味超标
甜味超标 2020-12-10 15:51

I am looking for a way to query a git server for its logs for a given range of commits. Being an SVN user, I\'m in the wrong mindset so Im hoping GIT experts can help. I\'

2条回答
  •  感情败类
    2020-12-10 16:30

    First, since there is no simple revision number with Git, you would specify revision as mentioned in the rev-parse command.

    But the only command which queries directly a remote repo (without cloning or fetching data) is git ls-remote, and:

    • it will display only SHA1, not the log message.
    • it works on ref patterns (head, tags, branches, ...), not with revs.

    Since log can show diffstats and full diffs, you cannot ask for logs without at least fetching a remote in a local repo.

提交回复
热议问题