To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
- Homebrew
- Mountain Lion -> High Sierra
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
| Documentation: | |
| Enabled: false | |
| Metrics/LineLength: | |
| Max: 100 | 
| #!/bin/sh | |
| unset GIT_DIR | |
| bundle exec pronto run --staged --exit-code | 
| function gclone() { | |
| git clone $1 | |
| repo=$(basename $1) | |
| directory=${repo%.*} | |
| cd $directory | |
| git config user.email "[email protected]" | |
| git config user.name "First Last" | |
| } |