Skip to content

Instantly share code, notes, and snippets.

View nickchauhan's full-sized avatar

Nikhil Chauhan nickchauhan

View GitHub Profile
@dreamsparkx
dreamsparkx / More-links.txt
Last active April 2, 2024 04:09
Install Apache, PHP, MySQL and phpMyAdmin on Mac OS X
@sshadmand
sshadmand / build.sh
Created December 25, 2014 20:44
Check git diff before deploying
commit(){
echo "Please enter a commit message..."
read msg
git add . --all
git commit -am $msg
}
check_commit(){
echo ========== CHECKING FOR CHANGES ========
changes=$(git diff)