dotfiles/pull.sh

5 lines
138 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
2023-01-07 01:55:35 -05:00
(cd ~/git/dotfiles && git pull) # test if work
2022-12-27 19:26:13 -05:00
fi