From: Joe Zim <contact@joezimjs.com>
To: Jeff King <peff@peff.net>
Cc: git@vger.kernel.org
Subject: Re: Broken Repo
Date: Mon, 07 May 2012 13:12:40 -0500 [thread overview]
Message-ID: <4FA81098.3000208@joezimjs.com> (raw)
In-Reply-To: <20120507074917.GE18812@sigill.intra.peff.net>
Thanks for the reply guys. It's fixed now.
On 5/7/2012 2:49 AM, Jeff King wrote:
> On Sun, May 06, 2012 at 10:36:53PM -0500, Joe Zim wrote:
>
>> Hi, I'm new here. I'm using Github right now. I have a repository
>> there and a local copy on my Windows 7 PC. I made a change, committed
>> it, then attempted to push it. I got a strange error that I can't
>> remember. Anyway, after several attempts I decided to just delete the
>> local repository, restore it from github and try again later. I
>> realize now that there were other ways this should have been handled,
>> but right now it doesn't matter. I can't figure out how to restore a
>> copy from Github and make this renewed repo the master branch. Can
>> anyone give me a detailed, step by step answer please?
> I don't quite understand your question. You deleted the original
> repository, which I assume means you removed the whole working tree. So
> can you not "git clone" the original repository again and redo your
> work?
>
> Or did you remove only the ".git" directory, leaving your modified
> working tree in place? If that is the case, you probably want:
>
> # turn your directory back into a git repository
> cd $your_project
> git init
>
> # fetch the existing work again
> git remote add origin $your_remote_url
> git fetch
>
> # now tell git that we are basing our branch on the upstream master.
> # We must make sure not to use "--hard" here, because that would
> # overwrite the working tree.
> git reset origin/master
>
> At this point you should be able to use "git status" to see your
> changes, and commit as normal. You might also want to run:
>
> git branch --set-upstream master origin/master
>
> to make "git pull" work without any arguments. This setup is done
> automatically by "git clone", but not by the manual init+fetch we did
> above.
>
> -Peff
prev parent reply other threads:[~2012-05-07 18:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-07 3:36 Broken Repo Joe Zim
2012-05-07 7:39 ` Marcus Karlsson
2012-05-07 7:49 ` Jeff King
2012-05-07 18:12 ` Joe Zim [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4FA81098.3000208@joezimjs.com \
--to=contact@joezimjs.com \
--cc=git@vger.kernel.org \
--cc=peff@peff.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).