Skip to content

Instantly share code, notes, and snippets.

View rogerclotet's full-sized avatar

Roger Clotet rogerclotet

View GitHub Profile
@javierexposito
javierexposito / gist:5908362
Last active December 19, 2015 05:59
What has been merged in current branch since the last release tag (X.X.X)
git log `git describe --abbrev=0`..HEAD --merges --oneline
@gonzaloserrano
gonzaloserrano / git-web
Created October 1, 2013 10:08
Open current git directory in github (branch compatible)
# /bin/bash
# Opens the github page for the current git repository in your browser
# https://github.com/jasonneylon/dotfiles/
giturl=$(git config --get remote.origin.url)
if [ "$giturl" == "" ]
then
echo "Not a git repository or no remote.origin.url set"
exit 1;