mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
8 lines
148 B
Bash
Executable file
8 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
cd build/html/
|
|
git add .
|
|
if [ -n "$(git ls-files --deleted)" ]
|
|
then
|
|
git ls-files --deleted | xargs git rm
|
|
fi
|
|
git commit -m "Update"
|