Skip to content

Commit 6b5541e

Browse files
committed
chore(dev): add justfile
1 parent 661cfd2 commit 6b5541e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

justfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env just --justfile
2+
3+
switch branch:
4+
@echo 'Fetching and switching to {{branch}}'
5+
git fetch origin && git switch '{{branch}}'
6+
7+
master-pull:
8+
git switch master && git pull
9+
10+
clear-env:
11+
rm -rf {{justfile_directory()}}/.venv

0 commit comments

Comments
 (0)