View 0_reuse_code.js
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
View github.sh
#!/bin/bash | |
function parse_git_branch { | |
local branch=`cd $DIR;git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'` | |
if [ "$branch" == "" ]; then | |
exit 1 | |
else | |
echo $branch | |
fi |
View fix-layout-slugs-mongo.js
/******************************************************************** | |
* fix-theme-slugs-mongo.js | |
* | |
* To run, replace localhost/db_name with your connection info and | |
* run this command: | |
* | |
* mongo localhost/db_name --quiet fix-layout-slugs-mongo.js | |
* | |
*/ |
View gist:364715
#!/bin/sh -x | |
# git name-rev is fail | |
CURRENT=`git branch | grep '\*' | awk '{print $2}'` | |
git checkout master | |
git pull origin master | |
git checkout ${CURRENT} | |
git rebase master | |
git checkout master | |
git merge ${CURRENT} | |
git push origin master |