Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is a noob question but I'm under the gun to resolve this. I've inherited an odd problem with a git subtree that appears to be repo corruption.

Here's the scenario : a subtree of a git-based project A is being used in project B. Part of the deploy script use pushes the subtree out to project B's repo:

git subtree push -P sub/path/name --squash git@github.com:MyCo/project_b.git projectb_branch

it starts pushing the commits and fails with

"fatal: bad object {sha}" 

I've searched for the SHA in the source repo's git log. It shows up in a commit:

git-subtree-dir: app/assets/ui
git-subtree-split: {sha}

The target repo (project_b) does indeed have a commit with that SHA but the source repo does not. I walked through the subtree shell script I can see that it's failing when it tries to look up that object with git log (in the toptree_for_commit function calling git log -l --pretty=format:'%T' {sha}).

At this point I am in way over my head but eager to try to find a solution. I've researched this as far as my limited knowledge permits, so I welcome any tips, tricks or RTFMs that can get me a little closer to a solution.

my sincere thanks!

share|improve this question
Does your local git reflog contains that {sha}? – VonC Sep 19 '12 at 6:28
nope. unfortunately not. – Kodez Monkey Oct 1 '12 at 19:06

2 Answers

I have figured this out; I found the reference of the errant sha in the commit information.

The easiest way to fix this is to:

  • stop using the subtree split that'd been created,
  • move the content to a different subdirectory and then
  • resplit the subtree.

Kind of messy but much less error prone than backing out commits to the problematic commit and then reapplying them (suggested in an answer to a somewhat similar question).

Not beautiful, but it got the job done.

share|improve this answer
Interesting feedback. +1 – VonC Oct 4 '12 at 5:41

I just ran into this issue and was able to resolve by:

git remote add shared $url
git fetch shared
git subtree push -P $prefix shared $branch

Might not help for all but saved me from having to hack on the repo structures.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.