Currently you are immediately commiting and pushing to the repo on each single little change. It would look better for the git history of the snippet repo to have a big bulk commit instead of a lot single commits. Eg. there will be one commit/push for each snippet you delete when you delete all local snippets
Just some pseudo code:
for each action/change do
doChange();
git commit
git push
end
This would be better
for each action/change do
doChange();
end
git commit
git push
commit and push one big change.