dotfiles/pull.sh
2023-01-08 10:01:17 -05:00

15 lines
346 B
Bash

#!/bin/bash
if [ -d ~/git/dotfiles ] ; then
git config --global user.email "matt@nelim.org"
git config --global user.name "matt1432"
(cd ~/git/dotfiles
git config pull.rebase false
git pull
if [ $(sed 's/.* //' ~/git/dotfiles/.git/FETCH_HEAD) = "git.nelim.org:matt1432/dotfiles" ] ; then
git commit -am "Auto Update"
git push
fi)
fi