1
0
mirror of https://github.com/git/git.git synced 2024-10-07 10:22:08 +02:00
Commit Graph

21 Commits

Author SHA1 Message Date
Linus Torvalds
fc7ef1e8ae Add "Index: " to the list of things that start a patch
This way we don't get it in the commit message, even if the patch had
been generated by cogito (or CVS, ugh) and people didn't add the proper
"---" marker.
2005-06-23 11:00:23 -07:00
Linus Torvalds
a196d8d423 Avoid doing the "filelist" thing, since "git-apply" picks up the files automatically
..and git-apply does a lot better job at it anyway.

Also, we break the comment/diff on a line that starts with "diff -", not
just on the "---" line.  Especially for git diffs, we actually want that
line in the diff.

(We should probably also break on "Index: ..." followed by "=====")
2005-06-23 09:40:23 -07:00
Linus Torvalds
f48516746f applypatch: use "--index" to actually make git-apply write the
changes to the index file.
2005-06-05 14:12:53 -07:00
Linus Torvalds
97b865ba79 applypatch: use the new git-apply to apply patches
Let's test it with some real-world horror schenarios.

I'm crazy, I know.
2005-06-05 14:09:03 -07:00
Linus Torvalds
aff9f97a4f cvs2git: use CVS (rather than RCS) to extract the different
file versions.

This allows you to do the conversion (although slowly) from
a remote repository, and besides, it's one less thing to worry
about when you don't need to look up the CVS Attic directories
etc.
2005-05-30 21:00:09 -07:00
Linus Torvalds
d2b6f7c2fd cvs2git: fix character quoting
We need to quote backslash and backtick too.

And inform the user about our progress, since converting a
big archive can take time. Doing the full mutt history took
just under eight minutes.
2005-05-24 12:57:12 -07:00
Linus Torvalds
1db0819a9c cvs2git: set timezone info to UTC, the way CVS does
This should also mean that the conversion is now completely
defined by the CVS tree, and that two people doing a cvs2git
conversion on the same base will always get the same results
regardless of when or in what timezone they do it.
2005-05-24 10:15:42 -07:00
Linus Torvalds
b535a802b2 cvs2git: add support for GIT_COMMITTER_DATE
Of course, this requires a version of git that cares..
2005-05-24 09:59:55 -07:00
Linus Torvalds
e16c03b549 cvs2git: escape <<EOF messages, and work around cvsps branch handling
This escapes '$' characters in <<-handling, and gives preference to
the new branch when cvsps incorrectly reports a commit as originating
on an old branch.
2005-05-24 09:36:33 -07:00
Linus Torvalds
e69a19f784 Fix cvs2git branch handling
.. and tell 'co' to shut up about the rcs noise.

This still leaves some branch issues up in the air: it looks like
cvsps has some questionable originating branch information, but I
don't know whether that's a cvsps bug or an actual bug in the
syslinux archive I'm using to test.

I'll let David Mansfield answer my questions about CVS. I'm a
total idiot when it comes to branches under CVS ("I'm pure!").
2005-05-24 09:06:51 -07:00
Linus Torvalds
3e91311ae7 Add "cvs2git" program to convert a CVS archive into a GIT archive
It's very hacky, and it needs lots of work, but it seems to have converted
Peter's "syslinux" archive successfully. Whether the end result is correct
or not is to be seen.

Tons of work still to do: do name conversion properly, and do tags etc.

And testing. Lots of testing.
2005-05-24 01:07:31 -07:00
Linus Torvalds
6a9853cd45 Make "applypatch" use the "-E" flag to patch.
Always remove empty files, regardless of how the diff
showed them to have become empty.
2005-05-17 17:15:56 -07:00
Linus Torvalds
c9049d41b8 Update applypatch to use new GIT_-prefix environment variables.
Avoid the warnings from newer git versions.
2005-05-17 09:35:01 -07:00
Linus Torvalds
62c1f6b4af Get AUTHOR_DATE from the email Date: line
Now that git does pretty reliable date parsing, we might as well get
the date from the email itself. Of course, it's still questionable
whether the date on the email is all that relevant, but it's certainly
no worse than taking the commit date.
2005-05-01 21:42:53 -07:00
Linus Torvalds
8c7b86632c Add "stripspace" program to clean up email commentary
Remove multiple empty lines, and empty lines at beginning and end.
2005-04-30 10:58:41 -07:00
Linus Torvalds
50eb31d103 Fix up "applypatch" for the big git rename
Add "git-" prefixes to git commands.
2005-04-29 14:56:18 -07:00
James Bottomley
ad4e9ce4f9 [PATCH] make dotest more amenable to commit message editing
This makes "dotest" a lot nicer to sue, especially for people who were
used to editing the commit comments after-the-fact in BK, which git
doesn't apply. 

he syntax is

	dotest [-q] mailbox [signoff]

so the command line operates exactly as you're used to.  If you supply
the -q it will query before applying (I also added the [a]pply all the
rest option).  If the signoff file is absent, no signoff line gets
added. 

There's also one addition in this:  a checkout-cache line.  I added that
for poor saps like me whose laptop takes minutes to checkout a full
build tree, so I can run dotest in a directory with no checked out
files.
2005-04-20 08:23:00 -07:00
Linus Torvalds
6109681994 Add quotes around the subject line that we print out as being applied.
My brain just flipped when it tried to read the "Applying" as part
of the explanation of the patch, and the sentence didn't make any
sense. The quotes make it clear what's going on.
2005-04-18 17:40:32 -07:00
Linus Torvalds
e90a4c0ed1 Add "dotest" and "applypatch" scripts to actually make things useful.
Also updates "mailinfo" to write the file list.
2005-04-18 16:11:32 -07:00
Linus Torvalds
853916ff7f Add "applypatch" and "dotest" scripts to tie it all together.
This should be getting it all pretty close to a working setup.
2005-04-12 01:40:20 -07:00
Linus Torvalds
2744b2344d Start of early patch applicator tools for git.
I looked a bit at my old BK tools for the same thing, but they were
just so horrid in many ways that I largely rewrote it all and these
tools do things a bit differently. Instead of aggressively piping
data from one process to another (which was clever but very hard
to follow), this first just splits out the mbox into many smaller
email files, and then does some scripts on these temporary files.
2005-04-11 23:46:50 -07:00