Fixing a messed up git directory

Following situation:
You have got a cloned repository in your home directory, you noticed that something changed upstream und you want to get all the fancy changes. You do a:

1git fetch upstream && git pull upstream tags/2.1.0

to get the latest tag. What you didn’t check: What is your current branch, have you uncommited changes? And boom, everything is broken:

1$ git status
2Auf Branch master
3Ihr Branch ist auf dem selben Stand wie 'origin/master'.
4Sie haben nicht zusammengeführte Pfade.
5 (beheben Sie die Konflikte und führen Sie "git commit" aus)
6 
7zum Commit vorgemerkte Änderungen:
8 
9  neue Datei:     .coveralls.yml
10  neue Datei:     .fixtures.yml
11  neue Datei:     .gitignore
12  neue Datei:     .gitmodules
13  neue Datei:     .sync.yml
14  neue Datei:     .travis.sh
15  neue Datei:     .travis.yml
16 
17Nicht zusammengeführte Pfade:
18  (benutzen Sie "git add/rm <Datei>...", um die Auflösung zu markieren)
19 
20  von beiden hinzugefügt: CHANGELOG.md
21  von beiden hinzugefügt: Gemfile
22  von beiden hinzugefügt: README.md
23  von beiden hinzugefügt: lib/puppet/provider/kernel_parameter/grub2.rb
24  von beiden hinzugefügt: metadata.json
25  von beiden hinzugefügt: spec/spec_helper.rb

How do we fix that?
We start with:

1git reset --hard

What does it do?

Resets the index and working tree. Any changes to tracked files in the working tree since
are discarded.

Than we add:

1git clean --force -d

This basically deletes all untracked directories and files. We can simulate this with:

1git clean --force -d --dry-run

Now we got a clean directory again, all files with merge conflicts or whatsoever are gone. Please note that this will also remove every change that you did before the pull but forgot to commit. If you want to keep that changes than you shouldn’t copy&paste the git commands!

This entry was posted in 30in30, General, Linux, Short Tips. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload CAPTCHA.