create a command "done" - git add, commit, push in one line

1. open ~/.bash_profile
2. Type
alias done='echo "Enter commit message : " && read MSG && git add . && git commit -m "$MSG" && git push'
3. Type "done" on the git project root folder
4. Done