yafetch/scripts/git.sh
Ari Archer 5f8723c656
Imrpoved debugability
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-04-04 00:00:24 +03:00

9 lines
135 B
Bash
Executable file

#!/usr/bin/env sh
main() {
git add -A
git commit -sa
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
}
main "$@"