2022-12-08 17:11:17 +01:00
|
|
|
#/bin/sh -xe
|
|
|
|
. ${HOME}/.bin/_config
|
2024-03-23 09:50:32 +01:00
|
|
|
needs git--
|
2022-12-08 17:11:17 +01:00
|
|
|
|
|
|
|
cd ${PIMDIR}
|
2024-12-17 17:56:30 +01:00
|
|
|
git pull --autostash
|
2022-12-08 17:11:17 +01:00
|
|
|
git add *
|
|
|
|
git commit -am "Update $(date +"%Y-%m-%d %H:%M")"
|
|
|
|
git fetch
|
|
|
|
git rebase origin/main
|
|
|
|
git push
|