History log of /openbsd-current/.gitignore
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1.3 07-Jul-2023 tobhe

Ignore CVS directories for easier git + CVS coexistence.

ok bluhm@ stsp@


Revision tags: OPENBSD_7_1_BASE OPENBSD_7_2_BASE OPENBSD_7_3_BASE
# 1.2 11-Nov-2021 kn

Ignore tags files

Besides obj (and all the build objects inside), tags seem to be the only
thing that's automatically created by our build infrastructure which should
never be committed.

CVS ignores "tags" due to its builtin list of ignore patterns.
Git does not ignore tags, although it has a builtin list (e.g. "*.o").
Got has no such builtin list.

Add "**/tags" to .gitignore specifically to provide a sane default for
Got checkouts.

Mirror .gitignore with sys/.gitignore to have the same experience with
kernel-only checkouts, as is common practise with Got.

OK stsp sthen


Revision tags: OPENBSD_7_0_BASE
# 1.1 25-May-2021 jcs

instruct git to ignore all **/obj entries created by "make obj"

ok deraadt, stsp