Last active
December 14, 2015 02:38
-
-
Save MarceloCajueiro/5014692 to your computer and use it in GitHub Desktop.
Simple way to print commit url
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gh_commit(){ | |
echo "https://github.com/$1/$2/commit/$3" | |
} | |
nohup_commit(){ | |
gh_commit "nohupbrasil" $* | |
} | |
contabil_commit(){ | |
nohup_commit "contabilidade" $* | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍