ScottFollowSep 22, 2021·1 min readHow to clean your local branchgit status Get a visual of current changes. red changes are unstaged changes. Green changes are staged changes.I use the following to clear all changesgit reset Unstage your changesgit checkout .git checkout -- .git clean -f -fd -fx