this is probably a very easy question but I am completely new to Git so...
- I have done a pull on my master branch.
- Another person has done a lot of changes to the master branch.
- I wanted to discard all my changes so I deleted the project locally (just deleted from windows explorer) and then run a git pull myremote master.
I do now see why this does not work. It ended up in that only the changed files from the master branch were pulled. And if i now run git status I will see all the other files as deleted files. Not good!!
So, what I want to do is to get a clean copy or checkout (or what it is called) of the master branch as if it was the first time I pulled the project from the master branch. Reset the local Git repository or something?
How do I proceed?