https://lakefs.io/ logo
#help
Title
h

HT

06/28/2023, 3:23 AM
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

Itai Admi

06/28/2023, 5:39 AM
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

HT

06/29/2023, 3:35 AM
Great ! That what I was looking for ! Thanks !
👍 1