summary refs log tree commit diff stats
path: root/scripts
Commit message (Expand)AuthorAgeFilesLines
* added scripts/ranger (simple link to ranger.py)hut2010-06-181-0/+1
='n24' href='#n24'>24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
='n5' href='#n5'>5
6
7
8
9
10
11





                                                                    
                  



                     
#!/bin/bash
#
# Github populates http://akkartik.github.io/mu with branch gh-pages
# (More info: https://pages.github.com)
# We keep gh-pages sync'd with master.

git push || exit 1
git checkout gh-pages
git pull . master
git push
git checkout master