Skip to content

Instantly share code, notes, and snippets.

View PedroGabriel's full-sized avatar

Pedro Gabriel PedroGabriel

View GitHub Profile
@PedroGabriel
PedroGabriel / extensions.md
Created January 6, 2023 06:06
extensions
××××××
Dart Dart language support and debugger for Visual Studio Code.
Dev Containers Open any folder or repository inside a Docker container and take advantage of Visual Studio Code's full feature set.

|

@PedroGabriel
PedroGabriel / .bashrc
Last active January 5, 2021 18:28
.bashrc | .gitconfig | .zshrc
alias gitclear="git branch --merged develop | grep -v '^[ *]*develop$' | xargs git branch -d"
alias gitclearm="git branch --merged master | grep -v '^[ *]*master$' | xargs git branch -d"
export PS1='\[\033[01;32m\]➜ \[\033[01;36m\]\W\[\033[31m\]$(__git_ps1)\[\033[00m\] '
function push() {
git add .
git commit -a -m "$1"
git push
}