Saturday 19 December 2015

ncast.io the channel of the web

 

ncast.io

 

ncast is a video streaming platform design to make video channel out of web sites.
http://ncast.io/

Tuesday 1 December 2015

Checkout remote branch and track


for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master `; do
 git branch --track ${branch#remotes/origin/} $branch
done