11 lines
150 B
Bash
Executable File
11 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
cd $HOME/notes
|
|
git add .
|
|
git add .gitignore
|
|
git add *
|
|
git status
|
|
dt=$(date +"%d/%m/%y-%H.%M.%S")
|
|
git commit -m "Auto $dt"
|
|
git push
|
|
exit 0
|