Hi team ! Is there an easy way to: for a given fil...
# help
h
Hi team ! Is there an easy way to: for a given file, track all the "version" of it ? What commit change what to that specific file ? A bit like git blame ?
i
Hi @HT, yes there is. With lakectl run:
Copy code
lakectl log lakefs://<repo>/<branch> --objects path/to/object --amount 5
to get the last 5 commits that changed the object
If you want to use it with some other client, see
logCommits
in our API Reference
h
Great ! That what I was looking for ! Thanks !
👍 1