dotfiles/pull.sh

5 lines
123 B
Bash
Raw Normal View History

2022-12-27 19:26:13 -05:00
#!/bin/bash
if [ -f ~/git/dotfiles ] ; then
2022-12-27 19:28:28 -05:00
git config pull.rebase false
2022-12-27 19:26:13 -05:00
(cd ~/git/dotfiles && git pull)
fi