dotfiles/pull.sh
2023-01-07 02:35:04 -05:00

9 lines
259 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) # test if work
fi