From: Jacob Helwig <jacob.helwig@gmail.com>
To: pascal@obry.net
Cc: git list <git@vger.kernel.org>
Subject: Re: reverting initial commit
Date: Wed, 25 Mar 2009 11:20:23 -0700 [thread overview]
Message-ID: <8c9a060903251120j3e757e94o96b2b77669c16c61@mail.gmail.com> (raw)
In-Reply-To: <49CA7428.70400@obry.net>
On Wed, Mar 25, 2009 at 11:12, Pascal Obry <pascal@obry.net> wrote:
>
> Starting a new project I create a new repo and added some files for the
> initial revision of the project, something like:
>
> mkdir repo.git
> cd repo.git
> git init
> touch file
> git add file
> git ci -m "initial revision"
>
> Now one file was not meant to be committed, I wanted to revert this commit:
>
> git reset HEAD^
>
> fatal: ambiguous argument 'HEAD^': unknown revision or path not in the
> working tree.
> Use '--' to separate paths from revisions
>
> I understand that HEAD^ does not exist, is there a way to do that?
>
> Thanks,
> Pascal.
>
> --
>
> --|------------------------------------------------------
> --| Pascal Obry Team-Ada Member
> --| 45, rue Gabriel Peri - 78114 Magny Les Hameaux FRANCE
> --|------------------------------------------------------
> --| http://www.obry.net - http://v2p.fr.eu.org
> --| "The best way to travel is by means of imagination"
> --|
> --| gpg --keyserver keys.gnupg.net --recv-key F949BD3B
>
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
You want "git filter-branch". Probably something like:
git filter-branch --index-filter 'git rm --cached --ignore-unmatched
FILE_TO_REMOVE' -- --all
This will remove FILE_TO_REMOVE from all commits across all branches.
-Jacob
next prev parent reply other threads:[~2009-03-25 18:27 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-25 18:12 reverting initial commit Pascal Obry
2009-03-25 18:20 ` Jacob Helwig [this message]
2009-03-25 18:26 ` Junio C Hamano
2009-03-25 18:33 ` Jacob Helwig
2009-03-25 19:45 ` Giuseppe Bilotta
2009-03-25 20:40 ` Sverre Rabbelier
2009-03-25 21:22 ` Giuseppe Bilotta
2009-03-25 21:06 ` Eric Raible
2009-03-25 18:36 ` Pascal Obry
2009-03-25 18:40 ` Junio C Hamano
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=8c9a060903251120j3e757e94o96b2b77669c16c61@mail.gmail.com \
--to=jacob.helwig@gmail.com \
--cc=git@vger.kernel.org \
--cc=pascal@obry.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).