andrewchambers

Results 370 comments of andrewchambers

Suppose bupstash enters a directory with a .gitignore file, we could associate this with a callback script that emits a list of excludes for child directories. We could then perhaps...

I am trying very hard in the design of bupstash to avoid dependencies on things that might change in 5+ years. I don't really know if git will become like...

Git also has the ability to print a list of all the files it is tracking, that might be another way to generate an ignore set, though requires git to...

This is actually rather easy with git: git ls-files --exclude-standard -i -o --directory

This looks like the output of --print-stats got jumbled with the progress bar for some reason.

It would be nice to add, thanks for bringing it up.

So we no longer have an sqlite3 database in the repository, but we should still consider copying the oplog somewhere safe at the end of gc.

I would very much like to add this for 1.0 - It seems like an important feature.

Sure, I mainly was interested in performance, which is something we can measure. There is actually a hidden cli command specifically for benchmarking this stuff from stdin where you can...

I'm on my 3rd implementation of this now, I can never quite get it right. A big problem is I want to strongly resist pulling async into bupstash.