blob: 3eef2c6fa7fede5c542df19feee824baee24ccc3 (
plain)
1
2
3
4
5
6
|
#!/bin/bash
# Craig Jennings <craigmartinjennings@gmail.com>
# tired of pushing to multiple locations with multiple commands
/usr/bin/git --git-dir="$HOME"/.dotfiles/ --work-tree="$HOME" push origin main && \
/usr/bin/git --git-dir="$HOME"/.dotfiles/ --work-tree="$HOME" push source main && \
/usr/bin/git --git-dir="$HOME"/.dotfiles/ --work-tree="$HOME" push github main
|