Skip to content

Instantly share code, notes, and snippets.

View MMachado-uy's full-sized avatar
💭
this is false

Mauricio Machado MMachado-uy

💭
this is false
View GitHub Profile
@camiloherbert
camiloherbert / git-hoard
Last active April 12, 2018 19:49 — forked from MMachado-uy/git-stache
Add epicness and fun to your boring git stash with this fierce and magestic dragon hoard.
#!/bin/bash
# Add the location of this file to your path and then simply call
# git hoard instead of your regular and dull git stash. Batteries not included.
# Original idea & code: https://gist.github.com/MMachado-uy/cf3cd452f49d2e800e03ec9183c1163a
if [ -d .git ]; then
echo ' __----~~~~~~~~~~~------___'
echo ' . . ~~//====...... __--~ ~~'
echo ' -. \_|// |||\\ ~~~~~~::::... /~'
echo ' ___-==_ _-~o~ \/ ||| \\ _/~~-'
@MMachado-uy
MMachado-uy / .bashrc
Last active September 25, 2019 01:00
Personal .bashrc setup (Lots of stolen stuff and useless why-not(s))
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@JamesMGreene
JamesMGreene / gitflow-breakdown.md
Last active July 19, 2024 01:24
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository