Refine answer for git reset authored by Stefan Tauner's avatar Stefan Tauner
...@@ -36,7 +36,11 @@ link:http://processors.wiki.ti.com/index.php/Creating_IoT_Solutions_with_the_TM4 ...@@ -36,7 +36,11 @@ link:http://processors.wiki.ti.com/index.php/Creating_IoT_Solutions_with_the_TM4
{blank} {blank}
== How to reset a project cloned from git? == How to reset a project cloned from git?
simply `Reset Hard` the Repository. You are back where you started (modifications of files are undone). But beware - added files remain! Simply `git reset --hard` the Repository.
This undoes all modifications of files tracked by git.
But beware - files added by yourself (or generated by CCS) remain!
To get rid of them as well you can use `git cleanup` with the necessary options.
{blank} {blank}
== I have lost the debug view in CCS. == I have lost the debug view in CCS.
... ...
......