# Running several shells at once (here runs 4 shells)
make -j4


# Shows all the tracked files
git ls-tree -r master --name-only

# Removes the file from git tracking but not from harddisk
git rm --cached myfile

# Removes file from disk and tracking
git rm myfile

# Shows only the tracked files (untracked files no)
git status -uno
