forked from mirrors/jj
gitignore: add /buck-out/
to ignore list
While working on the Buck branch, I have been bitten about a million times by the following setup: - Hack away - Switch back to main - Run `jj st` after editing a file - `/buck-out` gets snapshotted, because it isn't ignored - Trip max snapshot filesize error - Pain There are a few ways to skin the cat but this is simplest. It's an incredibly small addition and it may be all for naught in the long run, but this will stem the bleeding, at least. Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
cf4a7e34b9
commit
882d528718
1 changed files with 5 additions and 2 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -2,9 +2,9 @@
|
|||
/rendered-docs
|
||||
.direnv
|
||||
.envrc
|
||||
# generated by nix build, nix-build
|
||||
# Generated by nix build, nix-build
|
||||
result
|
||||
# generated by the insta crate
|
||||
# Generated by the insta crate
|
||||
*.pending-snap
|
||||
*.snap*
|
||||
!cli/tests/cli-reference@.md.snap
|
||||
|
@ -14,3 +14,6 @@ result
|
|||
|
||||
# Generated by setting `JJ_TRACE` environment variable.
|
||||
jj-trace-*.json
|
||||
|
||||
# To make working on buck2 easier (#1997, #4413)
|
||||
/buck-out/
|
||||
|
|
Loading…
Reference in a new issue