7 lines
148 B
Bash
7 lines
148 B
Bash
#!/bin/bash
|
|
|
|
cd "$HOME/.config/sapphrc/backups"
|
|
git add .;
|
|
git add -u;
|
|
git commit -m "New backup `date +'%Y-%m-%d %H:%M:%S'`";
|
|
git push origin main
|