Git is one of the most common Version Control systems today.


Common Commands

Prune local branches

git remote update origin --prune

Submodules

Update all submodules after first checkout of repo

git submodule update --init --recursive

Update all submodules in subsequent commits

git submodule update --recursive --remote

GIT