Code

git.git
19 years agoDo SHA1 hash _before_ compression. conversion
Linus Torvalds [Wed, 20 Apr 2005 08:10:46 +0000 (01:10 -0700)]
Do SHA1 hash _before_ compression.

And add a "convert-cache" program to convert from old-style
to new-style.

19 years ago[PATCH] init-db.c: create and use safe_create_dir helper
Zach Welch [Wed, 20 Apr 2005 04:48:15 +0000 (21:48 -0700)]
[PATCH] init-db.c: create and use safe_create_dir helper

Factor mkdir calls into common safe_create_dir subroutine.

Signed-Off-By: Zach Welch <zw@superlucidity.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] init-db.c: normalize env var handling.
Zach Welch [Wed, 20 Apr 2005 04:48:15 +0000 (21:48 -0700)]
[PATCH] init-db.c: normalize env var handling.

Normalize init-db environment variable handling, allowing the creation
of object directories with something other than DEFAULT_DB_ENVIRONMENT.

Signed-Off-By: Zach Welch <zw@superlucidity.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] init-db.c: cleanup comments
Zach Welch [Wed, 20 Apr 2005 04:48:15 +0000 (21:48 -0700)]
[PATCH] init-db.c: cleanup comments

Consolidate comments at top of main.

Signed-Off-By: Zach Welch <zw@superlucidity.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoMake "diff-tree" take commit objects too, like "diff-cache" does.
Linus Torvalds [Wed, 20 Apr 2005 04:39:28 +0000 (21:39 -0700)]
Make "diff-tree" take commit objects too, like "diff-cache" does.

Sometimes it's just easier to not have to look up the "commit"->"tree"
translation by hand first. It's trivial to do inside diff-tree, and
it's just being polite.

19 years agoAdd "diff-cache" helper program to compare a tree (or commit) with
Linus Torvalds [Wed, 20 Apr 2005 04:00:09 +0000 (21:00 -0700)]
Add "diff-cache" helper program to compare a tree (or commit) with
the current cache state and/or working directory.

Very useful to see what has changed since the last commit, either in
the index file or in the whole working directory.

Also very possibly very buggy. Matching the two up is not entirely
trivial.

19 years agoMake us be better at guessing a good hostname for the email.
Linus Torvalds [Tue, 19 Apr 2005 22:46:06 +0000 (15:46 -0700)]
Make us be better at guessing a good hostname for the email.

It's still just a guess, and the result is not a real email
address anyway. If you want to, you can use COMMIT_AUTHOR_EMAIL
to correct for any git guesses.

19 years agoRemove duplicate getenv(DB_ENVIRONMENT) call
Linus Torvalds [Tue, 19 Apr 2005 21:11:06 +0000 (14:11 -0700)]
Remove duplicate getenv(DB_ENVIRONMENT) call

Noted by Tony Luck.

19 years agoAdd stupid "git export" thing, which can export a git archive
Linus Torvalds [Tue, 19 Apr 2005 21:00:34 +0000 (14:00 -0700)]
Add stupid "git export" thing, which can export a git archive
as a set of patches and commentary.

You'd want something like this if you are tracking a git archive
in another SCM format. Notably, we want something like that for
BK users.

19 years agoFix init-db shared database case
Linus Torvalds [Tue, 19 Apr 2005 20:59:17 +0000 (13:59 -0700)]
Fix init-db shared database case

Noted by Aaron Straus

19 years agoUpdate "git-pull-script" to use "read-tree -m" for
Linus Torvalds [Tue, 19 Apr 2005 19:56:47 +0000 (12:56 -0700)]
Update "git-pull-script" to use "read-tree -m" for
reading a single tree too. That should speed up a
trivial merge noticeably.

Also, don't bother reading back the tree we just wrote
when we committed a real merge. It had better be the
same one we still have..

19 years agoMake "read-tree" know how to do a "1-way merge".
Linus Torvalds [Tue, 19 Apr 2005 18:41:18 +0000 (11:41 -0700)]
Make "read-tree" know how to do a "1-way merge".

This one just reads one tree, but picks up any matching stat information
from the old index.

19 years agoMake "read-tree" take the 'stat' information for a merge result from the
Linus Torvalds [Tue, 19 Apr 2005 18:16:12 +0000 (11:16 -0700)]
Make "read-tree" take the 'stat' information for a merge result from the
old index state if the result matches.

This leaves the stat information in the result tree for any trivial
merges, which is just the way we like it.

19 years agoMake git-pull-script do the right thing for symlinked HEAD's.
Linus Torvalds [Tue, 19 Apr 2005 16:53:58 +0000 (09:53 -0700)]
Make git-pull-script do the right thing for symlinked HEAD's.

Also exit gracefully if the HEAD pull failed, rather than use
a possibly stale MERGE_HEAD.

19 years agoDon't parse commit objects more than once.
Linus Torvalds [Tue, 19 Apr 2005 16:52:24 +0000 (09:52 -0700)]
Don't parse commit objects more than once.

Yes, the "parse_commit()" already checks for this condition, but
we need to check for it in rev-tree too, so that we don't start
walking the parent chain unnecessarily.

19 years ago[PATCH] SCSI trees, merges and git status
James Bottomley [Tue, 19 Apr 2005 02:55:19 +0000 (19:55 -0700)]
[PATCH] SCSI trees, merges and git status

Doing the latest SCSI merge exposed two bugs in your merge script:

1) It doesn't like a completely new directory (the misc tree contains a
   new drivers/scsi/lpfc)
2) the merge testing logic is wrong.  You only want to exit 1 if the
   merge fails.

19 years ago[PATCH] provide better committer information to commit-tree.c
Greg KH [Tue, 19 Apr 2005 00:37:32 +0000 (17:37 -0700)]
[PATCH] provide better committer information to commit-tree.c

Here's a small patch to commit-tree.c that does two things:
- allows the committer email address and name to be overridden
  by environment variables (if you don't like the environment
  variable names I've used (COMMIT_AUTHOR_NAME,
  COMMIT_AUTHOR_EMAIL), feel free to change them.)
- provide the proper domainname to the author/committer email
  address (otherwise, my address was only showing up as from the
  hostname.)

This allows people to set sane values for the commit names and email
addresses, preventing odd, private hostnames and domains from being
exposed to the world.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoMake fsck-cache print the object type for unreachable objects.
Linus Torvalds [Tue, 19 Apr 2005 00:35:31 +0000 (17:35 -0700)]
Make fsck-cache print the object type for unreachable objects.

This got lost when I updated to Daniel's new object model.

19 years ago[PATCH] show-diff: Remove stale comments
Junio C Hamano [Mon, 18 Apr 2005 23:51:09 +0000 (16:51 -0700)]
[PATCH] show-diff: Remove stale comments

Patch 1/6 in the series has already cleaned the interface to
call sq_expand(), but the comment before that function still
carries the stale interface warning.  Remove it.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Do not let rsync obliterate .git/object symbolic link.
Junio C Hamano [Mon, 18 Apr 2005 23:49:21 +0000 (16:49 -0700)]
[PATCH] Do not let rsync obliterate .git/object symbolic link.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff.c: -R option for reverse diff.
Junio C Hamano [Mon, 18 Apr 2005 22:07:24 +0000 (15:07 -0700)]
[PATCH] show-diff.c: -R option for reverse diff.

This adds -R option to obtain reverse diff.

It may be useful in the merge workflow.  After the base of the working
directory is merged and commited, in the working directory:

    $ read-tree <tree-id-of-merged-tree>
    $ show-diff -R

to re-validate if upstream changes make sense, and/or revert or
conflict with local changes you have in the working files.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff.c: make diff options customizable.
Junio C Hamano [Mon, 18 Apr 2005 22:07:24 +0000 (15:07 -0700)]
[PATCH] show-diff.c: make diff options customizable.

This makes the diff output formatting options customizable via the
environment variables.  The default is still the Linux kernel style.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff.c: adjust default format for the Linux kernel.
Junio C Hamano [Mon, 18 Apr 2005 22:07:24 +0000 (15:07 -0700)]
[PATCH] show-diff.c: adjust default format for the Linux kernel.

This patch adjusts the default output format of show-diff to match
the Linux kernel style, recommended in Documentation/SubmittingPatches.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff.c: simplify show_diff_empty.
Junio C Hamano [Mon, 18 Apr 2005 22:07:24 +0000 (15:07 -0700)]
[PATCH] show-diff.c: simplify show_diff_empty.

This patch removes the custom diff generation code from the
show_diff_empty() function.  Instead, just use show_differences().

This reduces the code size; but more importantly, it is needed for
the later patch to give diff options.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff.c: check unreadbale blob.
Junio C Hamano [Mon, 18 Apr 2005 22:07:24 +0000 (15:07 -0700)]
[PATCH] show-diff.c: check unreadbale blob.

This patch fixes show-diff to detect unreadable blob and warn
instead of going ahead and crashing.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff.c: clean up private buffer use.
Junio C Hamano [Mon, 18 Apr 2005 22:07:24 +0000 (15:07 -0700)]
[PATCH] show-diff.c: clean up private buffer use.

This patch fixes sq_expand() and show_differences() not to use and
hold onto its privately allocated buffer, which was a misguided
attempt to reduce calls to malloc but made later changes harder.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoAdd "update-cache --refresh" to git-pull-script to make sure
Linus Torvalds [Mon, 18 Apr 2005 22:01:48 +0000 (15:01 -0700)]
Add "update-cache --refresh" to git-pull-script to make sure
out index is all ready to go after a pull.

Noted by Russell King

19 years agoChange merge-cache and git-merge-one-file to use the SHA1 of the file
Linus Torvalds [Mon, 18 Apr 2005 21:17:58 +0000 (14:17 -0700)]
Change merge-cache and git-merge-one-file to use the SHA1 of the file
instead of a checked-out temporary copy.

If merging requires a checked-out-copy, we now do so with "unpack-file".

19 years agoAdd "unpack-file" helper that unpacks a sha1 blob into a tmpfile.
Linus Torvalds [Mon, 18 Apr 2005 21:11:01 +0000 (14:11 -0700)]
Add "unpack-file" helper that unpacks a sha1 blob into a tmpfile.

19 years agoAdd more header dependencies.
Linus Torvalds [Mon, 18 Apr 2005 20:12:21 +0000 (13:12 -0700)]
Add more header dependencies.

Yeah, my Makefiles are always a total disaster. Better this than autotools
or some horror like that, though.

19 years agoSplit up read-cache.c into more logical clumps.
Linus Torvalds [Mon, 18 Apr 2005 20:04:43 +0000 (13:04 -0700)]
Split up read-cache.c into more logical clumps.

Do the usage and error reporting in "usage.c", and the sha1 file
accesses in "sha1_file.c".

Small, nice, easily separated parts. Good.

19 years agoClean up the Makefile a bit.
Linus Torvalds [Mon, 18 Apr 2005 19:49:39 +0000 (12:49 -0700)]
Clean up the Makefile a bit.

This introduces the concept of git "library" objects that
the real programs use, and makes it easier to add such things
to a "libgit.a".

This will also make it trivial to split the current "read-cache.o"
into more aptly named pieces (it does a lot more than just read
the index file).

19 years agoAdd the simple scripts I used to do a merge with content conflicts.
Linus Torvalds [Mon, 18 Apr 2005 19:15:10 +0000 (12:15 -0700)]
Add the simple scripts I used to do a merge with content conflicts.

They sure as hell aren't perfect, but they allow you to do:

./git-pull-script {other-git-directory}

to do the initial merge, and if that had content clashes, you do

merge-cache ./git-merge-one-file-script -a

which tries to auto-merge. When/if the auto-merge fails, it will
leave the last file in your working directory, and you can edit
it and then when you're happy you can do "update-cache filename"
on it. Re-do the merge-cache thing until there are no files left
to be merged, and now you can write the tree and commit:

write-tree
commit-tree .... -p $(cat .git/HEAD) -p $(cat .git/MERGE_HEAD)

and you're done.

19 years agoMerge the new object model thing from Daniel Barkalow
Linus Torvalds [Mon, 18 Apr 2005 19:12:00 +0000 (12:12 -0700)]
Merge the new object model thing from Daniel Barkalow

This was a real git merge with conflicts. I'll commit the scripts I used
to do the merge next.

Not pretty, but it's half-way functional.

19 years ago[PATCH] fix bug in read-cache.c which loses files when merging a tree
James Bottomley [Mon, 18 Apr 2005 18:44:31 +0000 (11:44 -0700)]
[PATCH] fix bug in read-cache.c which loses files when merging a tree

I noticed this when I tried a non-trivial scsi merge and checked the
results against BK.  The problem is that remove_entry_at() actually
decrements active_nr, so decrementing it in add_cache_entry() before
calling remove_entry_at() is a double decrement (hence we lose cache
entries at the end).

19 years ago[PATCH] Switch implementations of merge-base, port to parsing
Daniel Barkalow [Mon, 18 Apr 2005 18:39:48 +0000 (11:39 -0700)]
[PATCH] Switch implementations of merge-base, port to parsing

This switches to my implementation of merge-base, but with the new parsing
library.

Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Port fsck-cache to use parsing functions
Daniel Barkalow [Mon, 18 Apr 2005 18:39:48 +0000 (11:39 -0700)]
[PATCH] Port fsck-cache to use parsing functions

This ports fsck-cache to use parsing functions. Note that performance
could be improved here by only reading each object once, but this requires
somewhat more complicated flow control.

Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Port rev-tree to parsing functions
Daniel Barkalow [Mon, 18 Apr 2005 18:39:48 +0000 (11:39 -0700)]
[PATCH] Port rev-tree to parsing functions

This ports rev-tree to use the parsing functions introduced in the
previous patches.

Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Implementations of parsing functions
Daniel Barkalow [Mon, 18 Apr 2005 18:39:48 +0000 (11:39 -0700)]
[PATCH] Implementations of parsing functions

This implements the parsing functions.

Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Header files for object parsing
Daniel Barkalow [Mon, 18 Apr 2005 18:39:48 +0000 (11:39 -0700)]
[PATCH] Header files for object parsing

This adds the structs and function declarations for parsing git objects.

Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Fix confusing behaviour of update-cache --refresh on unmerged paths.
Junio C Hamano [Mon, 18 Apr 2005 17:42:48 +0000 (10:42 -0700)]
[PATCH] Fix confusing behaviour of update-cache --refresh on unmerged paths.

The "update-cache --refresh" command attempts refresh_entry()
on unmerged path, which results in as many "needs update" messages
as there are unmerged stages for that path.  This does not do
any harm to the working directory, but it is confusing.

Here is a fix.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoUpdate README to reflect the hierarchical tree objects,
Linus Torvalds [Mon, 18 Apr 2005 04:52:23 +0000 (21:52 -0700)]
Update README to reflect the hierarchical tree objects,
and other newfangled things like merging.

Also, talk more about the actual operations, and give some
rough examples of what you can do.

19 years ago[PATCH] (resend) show-diff.c off-by-one fix
Junio C Hamano [Mon, 18 Apr 2005 03:31:40 +0000 (20:31 -0700)]
[PATCH] (resend) show-diff.c off-by-one fix

The patch to introduce shell safety to show-diff has an
off-by-one error.  Here is an fix.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoAss a "merge-cache" helper program to execute a merge on
Linus Torvalds [Mon, 18 Apr 2005 02:52:54 +0000 (19:52 -0700)]
Ass a "merge-cache" helper program to execute a merge on
any unmerged files.

This one doesn't actually do the merging, but it makes it
easy to script the programs that do using it.

19 years ago[PATCH] fork optional branch point normazilation
Brad Roberts [Mon, 18 Apr 2005 02:12:14 +0000 (19:12 -0700)]
[PATCH] fork optional branch point normazilation

Fix remove_specials for real.  The second half logic needs the original
head of the string.

Signed-off-by: Brad Roberts <braddr@puremagic.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoIgnore any unmerged entries for "checkout-cache -a".
Linus Torvalds [Mon, 18 Apr 2005 01:39:14 +0000 (18:39 -0700)]
Ignore any unmerged entries for "checkout-cache -a".

They don't "exist" yet, and you need to merge them first.

19 years agoRemove extraneous ',' ';' and '.' characters from the full name gecos field.
Linus Torvalds [Sun, 17 Apr 2005 23:52:54 +0000 (16:52 -0700)]
Remove extraneous ',' ';' and '.' characters from the full name gecos field.

Apparently some distributions tend to have space for phone numbers etc there.

19 years agoMake the revision tracking track the object types too.
Linus Torvalds [Sun, 17 Apr 2005 23:19:32 +0000 (16:19 -0700)]
Make the revision tracking track the object types too.

This allows fsck to verify not just that an object exists, but
also that it has the type it was expected to have.

19 years agoMake "commit-tree" check the input objects more carefully.
Linus Torvalds [Sun, 17 Apr 2005 22:26:13 +0000 (15:26 -0700)]
Make "commit-tree" check the input objects more carefully.

Let's not allow trivially bogus commits. I did one for the first
trial of the first kernel git merge. fsck found it ok, but..

19 years agoMake "parse_commit" return the "struct revision" for the commit.
Linus Torvalds [Sun, 17 Apr 2005 19:40:18 +0000 (12:40 -0700)]
Make "parse_commit" return the "struct revision" for the commit.

Also, make it a fatal error to pass in a non-commit object. The callers
never checked, so better check here.

This simplifies merge-base further. It's now so trivial that it's almost
ridiculous.

19 years agoDo a very simple "merge-base" that finds the most recent common
Linus Torvalds [Sun, 17 Apr 2005 19:18:17 +0000 (12:18 -0700)]
Do a very simple "merge-base" that finds the most recent common
parent of two commits.

The question of "best" commit can probably be tweaked almost arbitrarily.
In particular, trying to take things like how big the tree differences
are into account migt be a good idea. This one is just very simple.

19 years agoMake "rev-tree.c" use the new-and-improved "mark_reachable()"
Linus Torvalds [Sun, 17 Apr 2005 19:09:20 +0000 (12:09 -0700)]
Make "rev-tree.c" use the new-and-improved "mark_reachable()"

It used to have its own specialized version for marking the
sub-reachability bits.

19 years agoMake "revision.h" slightly better to use.
Linus Torvalds [Sun, 17 Apr 2005 19:07:00 +0000 (12:07 -0700)]
Make "revision.h" slightly better to use.

 - mark_reachable() can be more generic, marking the reachable revisions
   with an arbitrary mask.
 - date parsing will parse to a date of 0 rather than ULONG_MAX for the
   bad old case, sorting the dates correctly.

19 years agoMove "parse_commit()" into common revision.h file.
Linus Torvalds [Sun, 17 Apr 2005 18:39:18 +0000 (11:39 -0700)]
Move "parse_commit()" into common revision.h file.

This also drops the old-style date parsing. We just don't care
enough, since we dropped that format pretty early.

Yes, this could do with some cleanup, and a common library file.
Some day.

19 years ago[PATCH] fix for memory leak in write-tree.c
Brad Roberts [Sun, 17 Apr 2005 17:55:12 +0000 (10:55 -0700)]
[PATCH] fix for memory leak in write-tree.c

Fix a memory leak in write-tree.c, not freeing the directory buffer.

19 years ago[PATCH] Fix +x-related show-diff false positives
Petr Baudis [Sun, 17 Apr 2005 17:04:48 +0000 (10:04 -0700)]
[PATCH] Fix +x-related show-diff false positives

This fixes show-diff listing all +x files as differring.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
[ That's what I get for working on a G5 - my testing was all
  big-endian in the first place.  -- Linus ]

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Remove unused arguments from index_fd()
Junio C Hamano [Sun, 17 Apr 2005 17:02:22 +0000 (10:02 -0700)]
[PATCH] Remove unused arguments from index_fd()

The function index_fd() in update-cache.c takes 5 arguments, but
two is not necessary and one that is a pointer to a structure
really needs to be a pointer to one member of that structure.
This patch cleans it up.

Also it removes printf() apparently left after initial
debugging.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Better error message from checkout-cache for unmerged files.
Junio C Hamano [Sun, 17 Apr 2005 17:02:21 +0000 (10:02 -0700)]
[PATCH] Better error message from checkout-cache for unmerged files.

The checkout-cache command says "file is not in the cache" when
an unmerged path is given.  This patch adds code to distinguish
the unmerged and the nonexistent cases and gives an appropriate
error message.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoFix total permission bogosity in "checkout-cache.c".
Linus Torvalds [Sun, 17 Apr 2005 16:55:36 +0000 (09:55 -0700)]
Fix total permission bogosity in "checkout-cache.c".

Use the proper octal mode naming instead of random decimal
crud, and don't reset the mode after the create with fchmod:
the whole point was to let "umask" do its thing.

Duh.

19 years ago[PATCH] update-cache --remove marks the path merged.
Junio C Hamano [Sun, 17 Apr 2005 16:53:35 +0000 (09:53 -0700)]
[PATCH] update-cache --remove marks the path merged.

When update-cache --remove is run, resolve unmerged state for
the path.  This is consistent with the update-cache --add
behaviour.  Essentially, the user is telling us how he wants to
resolve the merge by running update-cache.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Fixed to do the right thing at the end.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff.c: do not include unused header file
Junio C Hamano [Sun, 17 Apr 2005 16:53:35 +0000 (09:53 -0700)]
[PATCH] show-diff.c: do not include unused header file

This is my bad.  I added #include <ctype.h> to the file,
which I ended up not using and failed to remove it.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoBe much more liberal about the file mode bits.
Linus Torvalds [Sun, 17 Apr 2005 05:26:31 +0000 (22:26 -0700)]
Be much more liberal about the file mode bits.

We only really care about the difference between a file being executable
or not (by its owner). Everything else we leave for the user umask to
decide.

19 years ago[PATCH] Do not run useless show-diff on unmerged paths repeatedly.
Junio C Hamano [Sun, 17 Apr 2005 04:29:45 +0000 (21:29 -0700)]
[PATCH] Do not run useless show-diff on unmerged paths repeatedly.

When run on unmerged dircache, show-diff compares the working
file with each non-empty stage for that path.  Two out of three
times, this is not very helpful.  This patch makes it report the
unmergedness only once per each path and avoids running the
actual diff.

Upper layer SCMs like Cogito are expected to find out mode/SHA1
for each stage by using "show-files --stage" and run the diff
itself.  This would result in more sensible diffs.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff style fix.
Junio C Hamano [Sun, 17 Apr 2005 04:29:45 +0000 (21:29 -0700)]
[PATCH] show-diff style fix.

This fixes some stylistic problems introduced by my previous set
of patches.  I'll be sending my last patch to show-diff next,
which depends on this cleanup.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Rename confusing variable in show-diff
Junio C Hamano [Sun, 17 Apr 2005 04:29:45 +0000 (21:29 -0700)]
[PATCH] Rename confusing variable in show-diff

The show-diff command uses a variable "new" but it is always
used to point at the original data recorded in the dircache
before the user started editing in the working file.  Rename it
to "old" to avoid confusion.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff shell safety
Junio C Hamano [Sun, 17 Apr 2005 04:29:45 +0000 (21:29 -0700)]
[PATCH] show-diff shell safety

The command line for running "diff" command is built without
taking shell metacharacters into account.  A malicious dircache
entry "foo 2>bar" (yes, a filename with space) would result in
creating a file called "bar" with the error message "diff: foo:
No such file or directory" in it.

This is not just a user screwing over himself.  Such a dircache
can be created as a result of a merge with tree from others.

Here is a fix.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] show-diff -z option for machine readable output.
Junio C Hamano [Sun, 17 Apr 2005 04:29:45 +0000 (21:29 -0700)]
[PATCH] show-diff -z option for machine readable output.

This patch adds the -z option to the show-diff command,
primarily for use by scripts.  The information emitted is
similar to that of -q option, but in a more machine readable
form.  Records are terminated with NUL instead of LF, so that
the scripts can deal with pathnames with embedded newlines.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Optionally tell show-diff to show only named files
Junio C Hamano [Sun, 17 Apr 2005 04:29:45 +0000 (21:29 -0700)]
[PATCH] Optionally tell show-diff to show only named files

SCMs have ways to say "I want diff only this particular file",
or "I want diff files under this directory".  This patch teaches
show-diff to do something similar.  Without command line
arguments, it still examines everything in the dircache as
before.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Un unoptimize ls-tree behaviour
Junio C Hamano [Sat, 16 Apr 2005 20:57:39 +0000 (13:57 -0700)]
[PATCH] Un unoptimize ls-tree behaviour

ls-tree unconditionally called read_sha1_file() for all paths
even when not needed, which was a mistake introduced by me.
Rectify this by first checking S_ISDIR(mode) and read the tree
contents only when it is a tree and we are recursive.  There is
no need to read it in any other cases.

The patch also removes the confusing comment that led to this
incorrect implementation.

Thanks to Peter Baudis for noticing this problem.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoAdd "--unmerged" flag to "show-files", which does what the name implies.
Linus Torvalds [Sat, 16 Apr 2005 19:43:32 +0000 (12:43 -0700)]
Add "--unmerged" flag to "show-files", which does what the name implies.

The flag also implies "--stage", since unmerged file information doesn't
make sense without the full output.

19 years agoRemove "merge-tree.c"
Linus Torvalds [Sat, 16 Apr 2005 19:24:12 +0000 (12:24 -0700)]
Remove "merge-tree.c"

It's there in the history if somebody wants to resurrect it, but it
seems to have been successfully superceded by the new and improved
index-merge thing, where we do all merging entirely in the index.

19 years agoWhen inserting a index entry of stage 0, remove all old unmerged entries.
Linus Torvalds [Sat, 16 Apr 2005 19:05:45 +0000 (12:05 -0700)]
When inserting a index entry of stage 0, remove all old unmerged entries.

This allows you to actually tell git that you've resolved a conflict.

19 years agoMake 'read-tree' do a few more of the trivial merge cases.
Linus Torvalds [Sat, 16 Apr 2005 16:11:49 +0000 (09:11 -0700)]
Make 'read-tree' do a few more of the trivial merge cases.

This cuts down the work for the "real merge" to stuff where
people might actually disagree on the algorithm. The trivial
cases would seem to be totally independent of any policy.

19 years ago[PATCH] Add --stage to show-files for new stage dircache.
Junio C Hamano [Sat, 16 Apr 2005 15:33:23 +0000 (08:33 -0700)]
[PATCH] Add --stage to show-files for new stage dircache.

This adds --stage option to show-files command.  It shows
file-mode, SHA1, stage and pathname.  Record separator follows
the usual convention of -z option as before.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Byteorder fix for read-tree, new -m semantics version.
Junio C Hamano [Sat, 16 Apr 2005 15:30:20 +0000 (08:30 -0700)]
[PATCH] Byteorder fix for read-tree, new -m semantics version.

The ce_namelen field has been renamed to ce_flags and split into
the top 2-bit unused, next 2-bit stage number and the lowest
12-bit name-length, stored in the network byte order.  A new
macro create_ce_flags() is defined to synthesize this value from
length and stage, but it forgets to turn the value into the
network byte order.  Here is a fix.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoMake "read-tree" merge the trees it reads by giving them consecutive states.
Linus Torvalds [Sat, 16 Apr 2005 05:53:45 +0000 (22:53 -0700)]
Make "read-tree" merge the trees it reads by giving them consecutive states.

Normally you'd use state 0 for the "merged" state, and start out with
state 1 being "origin", state 2 being "first tree" and state 3 being
"second tree".

Once all the index entries are back in state 0, we have a successful
merge and can write the result tree back.

19 years agoMake cache entry comparison take the new "state" flag into account.
Linus Torvalds [Sat, 16 Apr 2005 05:51:44 +0000 (22:51 -0700)]
Make cache entry comparison take the new "state" flag into account.

This is what allows us to have multiple states of the same file in
the index, and what makes it always sort correctly.

19 years agowrite-tree: refuse to write out trees with unmerged index entries.
Linus Torvalds [Sat, 16 Apr 2005 05:04:54 +0000 (22:04 -0700)]
write-tree: refuse to write out trees with unmerged index entries.

Of course, we can't even generate such an index yet, but give me
some time. This is a cunning plan. Let's see if it actually works.

(I feel like Wile E Coyote, waiting for the big rock to fall).

19 years agoEncode a few extra flags per index entry.
Linus Torvalds [Sat, 16 Apr 2005 04:45:38 +0000 (21:45 -0700)]
Encode a few extra flags per index entry.

This will allow us to have the same name in different "states" in the
index at the same time. Which in turn seems to be a very simple way to
merge.

19 years agoSimplify show-diff cache entry name handling.
Linus Torvalds [Sat, 16 Apr 2005 04:42:34 +0000 (21:42 -0700)]
Simplify show-diff cache entry name handling.

The cache-entry names are all proper strings, no need to worry about
their length.

19 years ago[PATCH] Add '-z' to merge-tree.c
Junio C Hamano [Sat, 16 Apr 2005 02:20:42 +0000 (19:20 -0700)]
[PATCH] Add '-z' to merge-tree.c

This adds '-z' to merge-tree and changes its default line termination to
LF to make it consistent with your other recent changes.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoMake "diff-tree" have similar behaviour as "ls-tree" wrt line termination.
Linus Torvalds [Fri, 15 Apr 2005 22:11:57 +0000 (15:11 -0700)]
Make "diff-tree" have similar behaviour as "ls-tree" wrt line termination.

Default to the human-readable '\n', but make the scriptable "-z" flag
do the old '\0' behaviour.

19 years ago[PATCH] Add "-q" option to show-diff.c
Junio C Hamano [Fri, 15 Apr 2005 22:08:09 +0000 (15:08 -0700)]
[PATCH] Add "-q" option to show-diff.c

This adds the '-q' option for show-diff.c to squelch complaints for
missing files.

It is handy if you want to run it in the merge temporary directory after
running merge-trees with its minimum checkout mode, which is the
default, because you would not find any files other than the ones that
needs human validation after the merge there.

It also fixes the argument parsing bug Paul Mackerras noticed in
<16991.42305.118284.139777@cargo.ozlabs.ibm.com> but slightly
differently.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years ago[PATCH] Add -z option to show-files
Junio C Hamano [Fri, 15 Apr 2005 18:11:01 +0000 (11:11 -0700)]
[PATCH] Add -z option to show-files

This adds NUL-terminated output (-z) to show-files.  This is necessary
for merge-trees script to deal with filenames with embedded newlines.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoAdd "--cacheinfo" option to update-cache.
Linus Torvalds [Fri, 15 Apr 2005 18:08:33 +0000 (11:08 -0700)]
Add "--cacheinfo" option to update-cache.

This allows scripts to manually add entries to the cache explicitly.

Need to do some way to remove them too, even if the path exists.

19 years agoConvert the index file reading/writing to use network byte order.
Linus Torvalds [Fri, 15 Apr 2005 17:44:27 +0000 (10:44 -0700)]
Convert the index file reading/writing to use network byte order.

This allows using a git tree over NFS with different byte order, and
makes it possible to just copy a fully populated repository and have
the end result immediately usable (needing just a refresh to update
the stat information).

19 years ago[PATCH] Simplify date handling and make it more reliable
David Woodhouse [Fri, 15 Apr 2005 15:39:57 +0000 (08:39 -0700)]
[PATCH] Simplify date handling and make it more reliable

This make all dates be stores as seconds since UTC epoch, with the
author's or committer's timezone as auxiliary data so that dates can be
pretty-printed in the original timezone later if anyone cares.  I left
the date parsing in rev-tree.c for backward compatibility but it can be
dropped when we change to base64 :)

commit-tree now eats RFC2822 dates as AUTHOR_DATE because that's
what you're going to want to feed it.

Yes, glibc sucks and strptime is a pile of crap. We have to parse it
ourselves.

19 years ago[PATCH] ls-tree enhancements
Junio C Hamano [Fri, 15 Apr 2005 15:37:05 +0000 (08:37 -0700)]
[PATCH] ls-tree enhancements

This adds '-r' (recursive) option and '-z' (NUL terminated)
option to ls-tree.  I need it so that the merge-trees (formerly
known as git-merge.perl) script does not need to create any
temporary dircache while merging.  It used to use show-files on
a temporary dircache to get the list of files in the ancestor
tree, and also used the dircache to store the result of its
automerge.  I probably still need it for the latter reason, but
with this patch not for the former reason anymore.

It is relative to bb95843a5a0f397270819462812735ee29796fb4

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoAdd "merge-tree" helper program. Maybe it's retarded, maybe it's helpful.
Linus Torvalds [Thu, 14 Apr 2005 08:37:23 +0000 (01:37 -0700)]
Add "merge-tree" helper program. Maybe it's retarded, maybe it's helpful.

It only works one directory level at a time, so lookout..

19 years agoUse common "revision.h" header for both fsck and rev-tree.
Linus Torvalds [Thu, 14 Apr 2005 04:37:59 +0000 (21:37 -0700)]
Use common "revision.h" header for both fsck and rev-tree.

It's really a very generic thing: the notion of one sha1 revision
referring to another one. "fsck" uses it for all nodes, and "rev-tree"
only tracks commit-node relationships, but the code was already
the same - now we just make that explicit by moving it to a common
header file.

19 years agoFix read-cache.c collission check logic.
Linus Torvalds [Thu, 14 Apr 2005 00:47:12 +0000 (17:47 -0700)]
Fix read-cache.c collission check logic.

Not only did it test the #define the wrong way around, but
it also leaked file descriptors and VM space. This should
fix it.

19 years agoMake 'fsck' able to take an arbitrary number of parents on the
Linus Torvalds [Wed, 13 Apr 2005 23:42:09 +0000 (16:42 -0700)]
Make 'fsck' able to take an arbitrary number of parents on the
command line.

"arbitrary" is a bit wrong, since it is limited by the argument
size limit (128kB or so), but let's see if anybody ever cares.
Arguably you should prune your tree before you have a few thousand
dangling heads in your archive.

We can fix it by passing in a file listing if we ever care.

19 years agoMake fsck reachability avoid doing unnecessary work for
Linus Torvalds [Wed, 13 Apr 2005 19:35:08 +0000 (12:35 -0700)]
Make fsck reachability avoid doing unnecessary work for
parents that we reach multiple ways.

This doesn't matter right now. It _will_ matter once we have
complex revision graphs.

19 years agoMake "fsck-cache" use the same revision tracking structure as "rev-tree".
Linus Torvalds [Wed, 13 Apr 2005 16:57:30 +0000 (09:57 -0700)]
Make "fsck-cache" use the same revision tracking structure as "rev-tree".

This makes things a lot more efficient, and makes it trivial to do things
like reachability analysis.

Add command line flags to tell what the head is, and whether to warn
about unreachable objects.

19 years ago[PATCH] Change diff-tree output format
Petr Baudis [Wed, 13 Apr 2005 09:42:04 +0000 (02:42 -0700)]
[PATCH] Change diff-tree output format

Changes diff-tree output format so that fields are separated by tabs instead of
spaces (readibility, parseability), and tree entry type is listed along the
entry (avoids having to figure that out from the mode in the scripts).

This is what my scripts expect.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] diff-tree usage
Petr Baudis [Wed, 13 Apr 2005 09:39:33 +0000 (02:39 -0700)]
[PATCH] diff-tree usage

Fix diff-tree usage, since it takes -r instead of -R now.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] nsec portability
Petr Baudis [Wed, 13 Apr 2005 09:38:44 +0000 (02:38 -0700)]
[PATCH] nsec portability

It seems like the nsec portability is limited; in particular, older
glibcs (<=2.2.4 at least) don't seem to like it. So access the nsec
fields in struct stat only when -DNSEC.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] Whitespace Fixes
Ingo Molnar [Tue, 12 Apr 2005 18:36:26 +0000 (11:36 -0700)]
[PATCH] Whitespace Fixes

Trivial whitespace fixes.

From: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] No need to clean temp_git_file_* anymore
Junio C Hamano [Tue, 12 Apr 2005 15:08:12 +0000 (08:08 -0700)]
[PATCH] No need to clean temp_git_file_* anymore

Ancient cat-file command used to leave temp_git_file_* and there
was support to remove them in the clean target of Makefile.  I
do not think it is needed anymore.

From: Junio C Hamano <junkio@cox.net>
Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] Typofix in git/show-files.
Junio C Hamano [Tue, 12 Apr 2005 15:04:17 +0000 (08:04 -0700)]
[PATCH] Typofix in git/show-files.

Fixes a typo in usage string.

From: Junio C Hamano <junkio@cox.net>
Signed-off-by: Petr Baudis <pasky@ucw.cz>