Hi, is there any guide for how should we use commi...
# help
x
Hi, is there any guide for how should we use commit with s3 cli or boto? when I put a new file into a branch, it does not create a new commit like git.
a
The S3 interface cannot commit, there is no relevant operation. You will have the use the lakeFS API, e.g. via
lakectl
(or any REST client).
In the git analogy, the S3 gateway is the filesystem holding your repository. You edit files there ("data"), but you need
git
to commit (or perform any "metadata" operations).
x
Got it. Thanks.