brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
| # Global initialisation file for SciTE | |
| # For Linux, place in $prefix/share/scite | |
| # For Windows, place in same directory as SciTE.EXE (or Sc1.EXE) | |
| # Documentation at http://www.scintilla.org/SciTEDoc.html | |
| # Globals | |
| # Window sizes and visibility | |
| if PLAT_WIN | |
| position.left=0 |
| #!/bin/bash | |
| # $1 = # of seconds | |
| # $@ = What to print after "Waiting n seconds" | |
| countdown() { | |
| secs=$1 | |
| shift | |
| msg=$@ | |
| while [ $secs -gt 0 ] | |
| do | |
| printf "\r\033[KWaiting %.d seconds $msg" $((secs--)) |