Fix lint suggestions for git-sync-all

Use subshell for each directory rather than cd and cd back

Add git-sync option to sync new files
This commit is contained in:
Evie Litherland-Smith 2024-02-05 06:22:44 +00:00
parent ba9411fb9f
commit eeb8972fe6

View file

@ -1,10 +1,9 @@
git -C $HOME/.emacs/ pull --ff-only
git -C "$HOME/.emacs/" pull --ff-only
for DIRECTORY in $HOME/.password-store $HOME/.elfeed $HOME/Documents/Org $HOME/Documents/References; do
echo "--- $DIRECTORY ---"
mkdir -p $DIRECTORY
cd $DIRECTORY
git config --bool branch.main.sync true
git-sync
cd -
(
cd "$DIRECTORY" || exit
git-sync -ns
)
done