mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 09:31:39 -05:00
9 lines
148 B
Bash
9 lines
148 B
Bash
![]() |
#!/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"
|