feat: justfile for quicker backups
This commit is contained in:
parent
3d192bb7b2
commit
608c08c734
1 changed files with 7 additions and 0 deletions
7
justfile
Normal file
7
justfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env just --justfile
|
||||
|
||||
# Backup documents
|
||||
backup:
|
||||
git add -A
|
||||
git commit -m 'backup: $(date +"%Y-%m-%d")'
|
||||
git push
|
Reference in a new issue