On Tue, Sep 15, 2009 at 3:27 PM, Howard Miller <howard@xxxxxxxxxxxxxxxxxxx> wrote: > What's to stop me......... > > * The "wrong" branch just tracks a remote so I can just dump it once I > have this fixed - (delete it and recreate it?) Absolutely perfect plan. In fact, there's a way to "sync" your local branch to the remote one: git checkout X git reset origin/X (assuming that the remote branch is 'origin/X') > * after my 'reset' the files I have in my working copy (still the > wrong branch) should be the latest version ('git reset' does not > change the working copy I think?) correct (git reset --hard OTOH will discard your changes) > * So can I grab these files (they are mostly new), checkout the > correct version, and just overwrite the existing files? I'll loose > some history but not much and I don't care Oh... well if there were other changes to the same files in the other branch you could be carrying "other" changes. git diff to make sure you're committing what you want. > Seems too easy :-) It is :-) m -- martin.langhoff@xxxxxxxxx martin@xxxxxxxxxx -- School Server Architect - ask interesting questions - don't get distracted with shiny stuff - working code first - http://wiki.laptop.org/go/User:Martinlanghoff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html