blob: 42341dc9a21619ea7b036ced6e57b610a8993b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
---
layout: default
title: Fixing bad tree
description: How to fix the bad tree error on a github repo caused by egit
categories: troubleshooting
---
Due to a bug in egit's implementation of the `git rm` command, empty trees may not be removed from the index and result in a "bad tree" error on github:

Fixing the repo
---------------
Fixing this error is fairly simple with the commandline. To fix the error you need to recreate the tree and then remove it using `git rm` to ensure it is removed correctly.
For example, if the bad tree is at `badtree/` we would run:
<pre class="terminal">tekkub@iSenberg ~/tmp/fixing_bad_tree master
> mkdir badtree
tekkub@iSenberg ~/tmp/fixing_bad_tree master
> touch badtree/temp
tekkub@iSenberg ~/tmp/fixing_bad_tree master
> git add badtree/temp
tekkub@iSenberg ~/tmp/fixing_bad_tree master+
> git commit -m "Fixing bad tree, step one"
[master dbe6a08] Fixing bad tree, step one
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 badtree/temp
tekkub@iSenberg ~/tmp/fixing_bad_tree master
> git rm badtree/temp
rm 'badtree/temp'
tekkub@iSenberg ~/tmp/fixing_bad_tree master+
> git commit -m "Fixing bad tree, step two"
[master 46ae6d2] Fixing bad tree, step two
0 files changed, 0 insertions(+), 0 deletions(-)
delete mode 100644 badtree/temp
</pre>
We can then confirm the tree is removed by making sure it is not listed by `git ls-tree`:
<pre class="terminal">tekkub@iSenberg ~/tmp/fixing_bad_tree master
> git ls-tree -r HEAD | grep badtree
</pre>
If this returns no results, push the repo and everything should be fixed!
Avoiding future corruption
--------------------------
We recommend users avoid using egit to remove files from their repos. Always use `git rm` from the command line.
|