Skip to content

Instantly share code, notes, and snippets.

@andrebarradas
andrebarradas / tmux-cheatsheet.markdown
Created March 13, 2020 20:13 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@andrebarradas
andrebarradas / gist:1ba7ae6f34a03753d3413b2d12e09f62
Created July 22, 2019 12:57 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@andrebarradas
andrebarradas / .gitconfig
Created June 24, 2019 11:28 — forked from robmiller/.gitconfig
Some useful Git aliases that I use every day
#
# Working with branches
#
# Get the current branch name (not so useful in itself, but used in
# other aliases)
branch-name = "!git rev-parse --abbrev-ref HEAD"
# Push the current branch to the remote "origin", and set it to track
# the upstream branch
publish = "!git push -u origin $(git branch-name)"
@andrebarradas
andrebarradas / arduino-estacionamento
Created December 17, 2012 01:10
arduino-estacionamento
#include <Servo.h>
#define sizeArray 6
#define led7 7
#define led6 6
#define led5 5
#define led4 4
#define led3 3
#define led2 2