Skip to content

Instantly share code, notes, and snippets.

View ruiaraujo012's full-sized avatar
🏠
Working from home

Rui Araújo ruiaraujo012

🏠
Working from home
View GitHub Profile
@ruiaraujo012
ruiaraujo012 / docker-compose.test.yml
Last active May 17, 2020 20:59
Docker compose for Trademon project
version: "3.7"
services:
frontend:
build: ./PoGoTrades-Frontend
ports:
- "3000:3000"
volumes:
- ./PoGoTrades-Frontend:/frontend/
- /frontend/node_modules/
@ruiaraujo012
ruiaraujo012 / alias.txt
Created May 29, 2019 20:53
Alias for git commands
# GIT Aliases
alias gcl='git clone'
alias ga='git add'
alias grm='git rm'
alias gap='git add -p'
alias gall='git add -A'
alias gf='git fetch --all --prune'
alias gft='git fetch --all --prune --tags'
alias gfv='git fetch --all --prune --verbose'
alias gftv='git fetch --all --prune --tags --verbose'