Skip to content

Commit dd3f66e

Browse files
committed
fix: justfile
1 parent aa5c8f9 commit dd3f66e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

justfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,10 @@ clear-branches:
140140
git branch --merged | egrep -v "(^\\*|main)" | xargs git branch -d
141141

142142
reset-git:
143-
git checkout main && git pull && pnpm run clear-branches
143+
git checkout main
144+
git pull
145+
just clear-branches
144146

145147
merge-main:
146-
git fetch origin main:main && git merge main
148+
git fetch origin main:main
149+
git merge main

0 commit comments

Comments
 (0)