mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
13 lines
245 B
Bash
Executable File
13 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $HOME/Library/Mobile\ Documents/iCloud\~md\~obsidian/Documents/Zettelkasten/
|
|
gstatus=`git status --porcelain`
|
|
|
|
if [ ${#gstatus} -ne 0 ]
|
|
then
|
|
git add --all
|
|
git commit -m `date +%Y-%m-%d-%H%m%S`
|
|
git pull --rebase
|
|
git push
|
|
fi
|