my neovim config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at aurora 29 lines 675 B view raw
1#!/usr/bin/env just --justfile 2 3alias p := push 4alias pt := pusht 5 6default: push 7 8 9# Push the code to all remotes 10push FLAGS="-u" BRANSH="aurora": 11 git push {{FLAGS}} github {{BRANSH}} 12 git push {{FLAGS}} gitlab {{BRANSH}} 13 git push {{FLAGS}} codeberg {{BRANSH}} 14 git push {{FLAGS}} disroot {{BRANSH}} 15 git push {{FLAGS}} tangled {{BRANSH}} 16 git push {{FLAGS}} codefloe {{BRANSH}} 17 18# Push the git tags to all remotes 19pusht: push 20 git push --tags github 21 git push --tags gitlab 22 git push --tags codeberg 23 git push --tags disroot 24 git push --tags tangled 25 git push --tags codefloe 26 27# Remove the untraked garage 28clean: 29 git clean -fdx