Skip to content

Instantly share code, notes, and snippets.

View felipeplets's full-sized avatar
🚀
Creating a better world, line by line.

Felipe Plets felipeplets

🚀
Creating a better world, line by line.
View GitHub Profile
@felipeplets
felipeplets / loader.bash
Last active July 3, 2019 15:29 — forked from JuggoPop/Git branch bash autocomplete *with aliases*
Git branch bash autocomplete *with aliases* (add to .bash_profile)
# To Setup:
# 1) Save the .git-completion.bash file found here:
# https://github.com/git/git/blob/master/contrib/completion/git-completion.bash
# 2) Add the following lines to your .bash_profile, be sure to reload (for example: source ~/.bash_profile) for the changes to take effect:
# Git branch bash completion
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
# Add git completion to aliases
@felipeplets
felipeplets / podforceupdate.sh
Created May 3, 2016 13:01 — forked from mbinna/podforceupdate.sh
Clear CocoaPods cache, re-download and re-install all pods
#!/usr/bin/env bash
rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"
pod update