unison/unison-src/transcripts/upgrade-happy-path.md

29 lines
433 B
Markdown
Raw Permalink Normal View History

```ucm:hide
proj/main> builtins.merge lib.builtin
```
```unison
lib.old.foo = 17
lib.new.foo = 18
thingy = lib.old.foo + 10
```
```ucm
proj/main> add
```
Test tab completion and fzf options of upgrade command.
2024-05-20 19:09:00 +03:00
```ucm
proj/main> debug.tab-complete upgrade ol
proj/main> debug.fuzzy-options upgrade _
proj/main> debug.fuzzy-options upgrade old _
```
```ucm
proj/main> upgrade old new
proj/main> ls lib
proj/main> view thingy
```