Is it possible to get commit logs/messages of a remote git repo without git clone

后端 未结 4 578
生来不讨喜
生来不讨喜 2020-11-29 06:55

Is it possible to get commit logs/messages of a remote git repo without git clone?

The git repo I am working with is huge, even if I run git clone with --depth=1 sti

4条回答
  •  再見小時候
    2020-11-29 07:49

    I came across this problem. In my case, I had access .git file. I was able to extract information from it using following:

    git --git-dir=path/to/your/xyz.git log
    

提交回复
热议问题