×
          
              
          
      
      Clear all filters including search bar
          
        Valeri Tandilashvili's Git Notes
      
    git reset --hard HEAD~3
Deletes all commits after the specified commit and moves HEAD to that commit (this will get rid of changes so we should be careful)git reset --hard 004caa3error: The following untracked working tree files would be overwritten by merge:
        app/Log.php
The solution that fixed the problem:git add * 
git stash
git pull