On 1 April 2011 22:56, Ian Lynagh <[email protected]> wrote: > On Fri, Apr 01, 2011 at 10:41:01PM +0100, Max Bolingbroke wrote: >> >> Did you perhaps not do "git push --tags"? > > Ah, I did not! Now done.
Thanks, I see it now. Others on this list may be interested in a script I wrote (uploaded to http://hackage.haskell.org/trac/ghc/attachment/wiki/DarcsToGit/port-darcs-patch) that provides a very painless way to port simple patches from a Darcs to Git repo. The usage is: my-darcs-repo $ port-darcs-patch "Name of patch to port" ../my-git-repo The script just constructs a darcs diff for that patch, parses out the log message and unified diff, then applies the patch to the git repo with "patch" and records a new commit using the existing commit message. Simple but effective, and it avoids creating some intermediate directories. I'm not sure that "darcs diff" reports files created or deleted by a patch, though, so I wouldn't necessarily trust this method for changes that do that sort of thing. Max _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
