How To Use Rsync to Sync with a Remote System

rsync -aP localPath user@remoteTarget:remotePath The -P option combines –progress and –partial The -a (--archive) option combines -rlptgoD Add -z to compress data if it’s worth it.…

My git cheatsheet

Some pretty usefull git command I never remember :) Remove all local branches already merged in master git branch --merged master | xargs -L1 git branch -d and to keep master out of the result a grep will do git branch --merged master | grep -v "master" | xargs -L1 git branch -d update…