Gitlab API equivalent to git log (get the commit revision)

63 Views Asked by At

I want to find SHA1 commit in the branch that has lastly modified files in specified directory. For this purpose I can use command like this:

git log -n 1 --pretty=format:%H master <directory>

Is there any opportunity to do it via Gitlab API on remote repository without cloning it?

0

There are 0 best solutions below