[git-users] Re: Revert To Before A Specific Patch....

2010-03-31 Thread Konstantin Khomoutov
On Apr 1, 2:51 am, Jeffda wrote: > It would be awesome if GIT would have the capability to revert/reset > to a specific date/time. Read the manual of the git-reset command (and its "--hard" command- line option in particular), read the manual of the git-rev-parse command and its "SPECIFYING REVIS

[git-users] Re: Revert To Before A Specific Patch....

2010-03-31 Thread Jeffda
Thanks all! It would be awesome if GIT would have the capability to revert/reset to a specific date/time. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to git-us...@googlegroups.com. To unsubscribe fr

[git-users] Re: Revert To Before A Specific Patch....

2010-03-31 Thread Konstantin Khomoutov
On Mar 31, 10:33 pm, Jeffda wrote: > Is it possible to revert a GIT repository to what it was right before > a specific patch was applied? If so, is it possible to do so with just > the patch's filename or the patch itself? Alternatively (to what Marek discussed), as you mention patches, you can

[git-users] Re: Revert To Before A Specific Patch....

2010-03-31 Thread Marek Wywiał
On 31 Mar, 20:33, Jeffda wrote: > Is it possible to revert a GIT repository to what it was right before > a specific patch was applied? If so, is it possible to do so with just > the patch's filename or the patch itself? You can run: * git reset --soft commitid to move HEAD to commitid and co