dotfiles/system/.local/bin/sync_notes.sh
Severin Kaderli 50042dc9c0
Add new scripts
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2019-02-25 15:44:33 +01:00

19 lines
311 B
Bash
Executable file

#!/bin/bash
#
# SCRIPT NAME:
# sync_notes.sh
#
# AUTHOR:
# Severin Kaderli <severin.kaderli@gmail.com>
#
# DESCRIPTION:
# Sync notes in ~/Notes using git
#
# USAGE:
# ./sync_notes.sh
# Set custom wineprefix
cd "/home/severin/Notes"
git pull
git add --all
git commit -s -m "Update notes"
git push origin master