mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-25 07:45:41 +03:00
e59691d15f
Here we're squash-merging a branch that adds a new cli tool and some basic APIs for manipulating the data format of virtual branches as used by the frontend. * simple cli for showing data, including vbranches * can set and show the remote target default * basic list, new and move in API for frontend --------- Co-authored-by: Kiril Videlov <kiril@videlov.com> Co-authored-by: Nikita Galaiko <nikita@galaiko.rocks>
12 lines
117 B
Bash
Executable File
12 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run pnpm format
|
|
pnpm format
|
|
|
|
# Change directory to src-tauri
|
|
cd src-tauri
|
|
|
|
# Run cargo fmt
|
|
cargo fmt
|
|
|