Skip to content

Instantly share code, notes, and snippets.

@ritksm
ritksm / tmux-cheatsheet.markdown
Created May 9, 2016 03:50 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'Jack River'
class Radio:
def __init__(self, user=None):
self.user = user
@ritksm
ritksm / useful git alias
Created September 2, 2012 17:46
useful git alias
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
lg = log -p
graph = log --graph