mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
490 B
490 B
update
/ patch
(anything that a patch) ignores the namespace named "lib" at the location it's applied. This follows
the project organization convention that dependencies are put in "lib"; it's much easier to apply a patch to all of
one's own code if the "lib" namespace is simply ignored.
scratch/main> builtins.merge
foo = 100
lib.foo = 100
scratch/main> add
foo = 200
scratch/main> update
scratch/main> names foo