CS224W Course Notes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
341 B

TEMPDIR := $(shell mktemp -d -t tmp.XXX)
publish:
echo 'publishing site!'
cp -r ./_site/* $(TEMPDIR)
cd $(TEMPDIR) && \
ls -a && \
git init && \
git add . && \
git commit -m 'publish site' && \
git remote add origin https://https://github.com/snap-stanford/cs224w-notes.git && \
git push origin master:refs/heads/gh-pages --force