abelcastro.dev

My initial macOS setup - tools and resources list

2021-10-07

macOSDockerDjango

This is a collection of commands and resources that were useful for me with the initial setup of my MacBook.

  • Installs Xcode Command Line Tools
xcode-select --install
alias g='git'
alias gc='git checkout'
alias gco='git commit'
alias gs='git status'
alias gp='git pull'

alias dc='docker-compose'
alias up='docker-compose up'
alias down='docker-compose down'