Git

| Comments

Contents:

Commands #

Cleanup a local repository of all untracked files:

git clean -dfx

Throw away all uncommitted changes:

git reset --hard HEAD

Large files support #

Resources:

Installation:

brew install git-lfs

In the git repository:

git lfs install

To add file extensions to track via “lfs”:

git lfs track "*.psd"

git-sync #