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:
1 | git 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:
3 | Ihr Branch ist auf dem selben Stand wie 'origin/master' . |
4 | Sie haben nicht zusammengeführte Pfade. |
5 | (beheben Sie die Konflikte und führen Sie "git commit" aus) |
7 | zum Commit vorgemerkte Änderungen: |
9 | neue Datei: .coveralls.yml |
10 | neue Datei: .fixtures.yml |
11 | neue Datei: .gitignore |
12 | neue Datei: .gitmodules |
14 | neue Datei: .travis.sh |
15 | neue Datei: .travis.yml |
17 | Nicht zusammengeführte Pfade: |
18 | (benutzen Sie "git add/rm <Datei>..." , um die Auflösung zu markieren) |
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:
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:
This basically deletes all untracked directories and files. We can simulate this with:
1 | git 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!