I\'m working in a branch (i.e. design) and I\'ve made a number of changes, but I need to discard them all and reset it to match the repository version. I thought
design
In the source root: git reset ./ HEAD <--un-stage any staged changes git checkout ./ <--discard any unstaged changes
git reset ./ HEAD <--un-stage any staged changes git checkout ./ <--discard any unstaged changes