git.git
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 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>
19 years ago[PATCH] Consolidate the error handling
Petr Baudis [Wed, 13 Apr 2005 09:28:48 +0000 (02:28 -0700)]
[PATCH] Consolidate the error handling

Now there is error() for "library" errors and die() for fatal "application"
errors. usage() is now used strictly only for usage errors.

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

The nsec field of ctime/mtime is now checked only with -DNSEC defined during
compilation. nsec acts broken since it is stored in the icache but apparently
just gets to zero when flushed to filesystem not supporting it (e.g. ext3),
creating illusions of false changes. At least that's my impression.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] SHA1 naive collision checking
Petr Baudis [Wed, 13 Apr 2005 09:14:06 +0000 (02:14 -0700)]
[PATCH] SHA1 naive collision checking

When compiled with -DCOLLISION_CHECK, we will check against SHA1
collisions when writing to the object database.

From: Christopher Li <chrislgit@chrisli.org>
Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] ls-tree for listing trees
Petr Baudis [Wed, 13 Apr 2005 09:02:34 +0000 (02:02 -0700)]
[PATCH] ls-tree for listing trees

ls-tree tool provides just a way to export the binary tree objects
to a usable text format. This is bound to be useful in variety
of scripts, although none of those I have currently uses it.
But e.g. the simple script I've sent to HPA for purging the object
database uses it.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] Correct show-diff output for deleted files
Petr Baudis [Wed, 13 Apr 2005 08:46:35 +0000 (01:46 -0700)]
[PATCH] Correct show-diff output for deleted files

My convention is that contrary to files trimmed to zero size,
deleted files always go to /dev/null. This patch turns show-diff
to abide this.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] Silent flag for show-diff
Petr Baudis [Wed, 13 Apr 2005 08:40:09 +0000 (01:40 -0700)]
[PATCH] Silent flag for show-diff

This patch adds a -s flag for show-diff, which will surpress the
actual diffing. This is useful for my scripts when they just want
to see what needs to be updated in the cache.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
19 years ago[PATCH] Fix a crash when doing rev-tree
Petr Baudis [Tue, 12 Apr 2005 21:37:42 +0000 (14:37 -0700)]
[PATCH] Fix a crash when doing rev-tree

In parse_commit(), free(buffer) is fed a bogus pointer.

Signed-off-by: Petr Baudis <pasky@ucw.cz>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 years agoMake "checkout-cache" silently skip up-to-date files.
Linus Torvalds [Tue, 12 Apr 2005 21:17:28 +0000 (14:17 -0700)]
Make "checkout-cache" silently skip up-to-date files.

It used to always overwrite them if forced. Now it just
realizes that they are already ok, and don't need to be
touched.

19 years agoMake "rev-tree" able to read its own output again from the cache.
Linus Torvalds [Tue, 12 Apr 2005 20:40:03 +0000 (13:40 -0700)]
Make "rev-tree" able to read its own output again from the cache.

Also, add "date" information to the output so that you can do something
like this:

rev-tree `cat .git/HEAD` | sort -nr | cut -d' ' -f2 | while read i; do cat-file commit $i; done

which basically becomes a "git log" (aka "git changes") where things are
sorted by time.

19 years ago[PATCH] rev-tree support for "in X but not in Y".
David Woodhouse [Tue, 12 Apr 2005 19:35:11 +0000 (12:35 -0700)]
[PATCH] rev-tree support for "in X but not in Y".

To do the automated commit-mailing I need to be able to answer the
question "which commits are here today but weren't yesterday"...  i.e.
given two commit-ids $HEAD and $YESTERDAY I want to be able to do:

rev-tree $HEAD ^$YESTERDAY

to list those commits which are in the tree now but weren't
ancestors of yesterday's head.

Yes, I could probably do this with
rev-tree $HEAD $YESTERDAY | egrep -v ^[a-z0-9]*:3
but I prefer not to.

19 years ago[PATCH] show-diff show deleted files as diff as well.
Christopher Li [Tue, 12 Apr 2005 09:04:44 +0000 (02:04 -0700)]
[PATCH] show-diff show deleted files as diff as well.

The ideas is that using the show-diff to generate the
patch including deleted and new file (in the next patch).
So we don't have to do the temp new file diff dance on the
script.

The cache index now contain enough information to generate
the whole patch. So the GIT SCM don't need separate command
for check out file to edit or delete. Just do the edit and
remove and GIT will generate the correct patch.

It still require tell GIT to add new files.

19 years agoRemove the annoying "ok" printout from show-diff.
Linus Torvalds [Tue, 12 Apr 2005 09:01:12 +0000 (02:01 -0700)]
Remove the annoying "ok" printout from show-diff.

It used to be useful before I wrote "show-files", so that
show-diff would also tell what the cached files were. Now
it's just annoying.

19 years agoAdd a "check-files" command, which is useful for scripting
Linus Torvalds [Tue, 12 Apr 2005 07:23:14 +0000 (00:23 -0700)]
Add a "check-files" command, which is useful for scripting
patches.

In particular, it verifies that all the listed files are up-to-date
in the cache (or don't exist and are ready to be added).

19 years agoAdd "show-files" command to show the list of managed (or non-managed) files.
Linus Torvalds [Tue, 12 Apr 2005 01:55:38 +0000 (18:55 -0700)]
Add "show-files" command to show the list of managed (or non-managed) files.

You want things like this to check in a patch..

19 years agoAllow zero-sized files to be checked in.
Linus Torvalds [Tue, 12 Apr 2005 01:02:00 +0000 (18:02 -0700)]
Allow zero-sized files to be checked in.

The kernel may not want it, but others probably do.

Noted (again) by Junio Hamano.

19 years agoMake the rev-tree output more regular. This is the last
Linus Torvalds [Tue, 12 Apr 2005 00:40:58 +0000 (17:40 -0700)]
Make the rev-tree output more regular. This is the last
change. Promise.

It now always outputs all the revisions as <sha1>:<reachability>, where the
reachability is the bitmask of how that revision was reachable from the
commits in the argument list.

Trivially, if there is only one commit, the reachability will always be
(1 << 0) == 1 for all reachable revisions, and there won't be any edges
(so the "--edges" flag only makes sense with multiple commit keys).

19 years agoMake "rev-tree" capable of showing the difference in reachability between two
Linus Torvalds [Tue, 12 Apr 2005 00:23:58 +0000 (17:23 -0700)]
Make "rev-tree" capable of showing the difference in reachability between two
or more commit points.

This is important both to know what the difference between two commit
points is, but also to figure out where to try to merge from.

19 years agoMake "rev-tree" more efficient and more useful.
Linus Torvalds [Mon, 11 Apr 2005 23:42:13 +0000 (16:42 -0700)]
Make "rev-tree" more efficient and more useful.

Slight change of output format: it now lists all parents on the same line.

This allows it to work on initial commits too (which have no parents), and
also makes the output format a lot more intuitive.

19 years agoRename ".dircache" directory to ".git"
Linus Torvalds [Mon, 11 Apr 2005 22:47:57 +0000 (15:47 -0700)]
Rename ".dircache" directory to ".git"

I started out calling the tool "dircache". That's clearly moronic.

19 years agoFix stale index.lock file removal using "atexit()".
Linus Torvalds [Mon, 11 Apr 2005 22:39:26 +0000 (15:39 -0700)]
Fix stale index.lock file removal using "atexit()".

Problem noted by Randy Dunlap.

19 years agoAdd a "rev-tree" helper, which calculates the revision
Linus Torvalds [Mon, 11 Apr 2005 20:55:10 +0000 (13:55 -0700)]
Add a "rev-tree" helper, which calculates the revision
tree graph.

It's quite fast when the commit-objects are cached, but since
it has to walk every single commit-object, it also allows you
to cache an old state and just add on top of that.

19 years agoFix "usage()" to do the missing line termination.
Linus Torvalds [Mon, 11 Apr 2005 20:53:49 +0000 (13:53 -0700)]
Fix "usage()" to do the missing line termination.

It got broken when I changed it to use stdarg.

19 years agoFix "update-cache" not fixing up the size field as appropriate.
Linus Torvalds [Mon, 11 Apr 2005 18:33:58 +0000 (11:33 -0700)]
Fix "update-cache" not fixing up the size field as appropriate.

The size field isn't in the tree information, so we need to
update it if the sha1 matches.

19 years agoMake the default directory permissions more lax.
Linus Torvalds [Mon, 11 Apr 2005 17:24:41 +0000 (10:24 -0700)]
Make the default directory permissions more lax.

After all, if you want to not allow others to read your
stuff, set your "umask" appropriately or make sure the
parent directories aren't readable/executable.

19 years agoAdd a COPYING notice, making it explicit that the license is GPLv2.
Linus Torvalds [Mon, 11 Apr 2005 17:18:16 +0000 (10:18 -0700)]
Add a COPYING notice, making it explicit that the license is GPLv2.

Let's bite the v3 bullet when it comes, although if people want to,
they can just state "or later at discretion of Linus" in their copyright
messages.

19 years agoMake "update-cache --refresh" do what it really should do: just
Linus Torvalds [Mon, 11 Apr 2005 16:39:21 +0000 (09:39 -0700)]
Make "update-cache --refresh" do what it really should do: just
refresh the "stat" information.

We need this after having done a "read-tree", for example, when the
stat information does not match the checked-out tree, and we want to
start getting efficient cache matching against the parts of the tree
that are already up-to-date.

19 years agoFix up commit-tree/diff-tree user interface issues.
Linus Torvalds [Mon, 11 Apr 2005 15:37:17 +0000 (08:37 -0700)]
Fix up commit-tree/diff-tree user interface issues.

No, this doesn't make them easy to use, but makes diff-tree use
the "-r" flag for "recursive" (not "-R") and makes commit-tree
use AUTHOR_xxx environment flags (not COMMITTER_xxx) to match what
it actually does.

19 years agoOops. Fix bad initialization of the "seen" array, causing us to not
Linus Torvalds [Mon, 11 Apr 2005 06:33:52 +0000 (23:33 -0700)]
Oops. Fix bad initialization of the "seen" array, causing us to not
properly clear the reference count at init time. It happened to work
for me by pure luck.

Until it broke, and my unreferenced commit suddenly looked referenced
again. Fixed.

19 years agoOops, the actual 'printf' for missing objects was missing.
Linus Torvalds [Mon, 11 Apr 2005 06:22:59 +0000 (23:22 -0700)]
Oops, the actual 'printf' for missing objects was missing.

Which made fsck very quiet about objects it hadn't found. So add
it.

We'll need to make things like these optional, because it's
perfectly ok to have partial history if you don't want it,
and don't want to go backwards. But for development, it's best
to always complain about missing sha1 object files that are
referenced from somewhere else.

19 years agoAdd connectivity tracking to fsck.
Linus Torvalds [Mon, 11 Apr 2005 06:13:09 +0000 (23:13 -0700)]
Add connectivity tracking to fsck.

This shows that I've lost track of one commit already. Most likely
because I forgot to update the .dircache/HEAD file when doing a
commit, so that the next commit referenced not the top-of-tree, but
the one older commit.

Having dangling commits is fine (in fact, you should always have
at least _one_ dangling commit in the top-of-tree). But it's
good to know about them.

19 years agoFix off-by-one error in removal of cache entry.
Linus Torvalds [Mon, 11 Apr 2005 05:06:50 +0000 (22:06 -0700)]
Fix off-by-one error in removal of cache entry.

Also make the return value of "cache_name_pos()" be sane: positive
or zero if we found it (it's the index into the cache array), and
"-pos-1" to indicate where it should go if we didn't.

19 years agoFix diff-tree recursion.
Linus Torvalds [Mon, 11 Apr 2005 04:49:26 +0000 (21:49 -0700)]
Fix diff-tree recursion.

And, perhaps more importantly, fix the fact that if a filename changed from a
directory to a file (or vice versa), we must consider it a delete and an add,
not a "filechange".

19 years agoSimplify "diff-tree" output, and only keep track of one single name-base.
Linus Torvalds [Sun, 10 Apr 2005 22:08:02 +0000 (15:08 -0700)]
Simplify "diff-tree" output, and only keep track of one single name-base.

During original development I had different name-bases for source and
destination, so that I could make the output show how it got removed
from "tree a" and added to "tree b", but we don't want that. We only
do recursive diffs on anything where the bases are exactly the same,
so we might as well just work with a single base.

Also, make the output for "changed" be a single line, since people
hated the separate '<' / '>' format. They were right. It sucked.

19 years agoAdd "-R" flag to "diff-tree", so that it will recursively traverse a tree of trees
Linus Torvalds [Sun, 10 Apr 2005 21:03:58 +0000 (14:03 -0700)]
Add "-R" flag to "diff-tree", so that it will recursively traverse a tree of trees
as it diffs them.

This makes diff-tree usable again in the new world order.

19 years agoMake "update-cache" a bit friendlier to use (and harder to mis-use).
Linus Torvalds [Sun, 10 Apr 2005 18:32:54 +0000 (11:32 -0700)]
Make "update-cache" a bit friendlier to use (and harder to mis-use).

It now requires the "--add" flag before you add any new files, and
a "--remove" file if you want to mark files for removal. And giving
it the "--refresh" flag makes it just update all the files that it
already knows about.

19 years agoThis implements the new "recursive tree" write-tree.
Linus Torvalds [Sun, 10 Apr 2005 00:09:34 +0000 (17:09 -0700)]
This implements the new "recursive tree" write-tree.

It's got some debugging printouts etc still in it, but testing on the
kernel seems to show that it does indeed fix the issue with huge tree
files for each commit.

19 years agoMake fsck-cache warn about old-style tree objects that have full
Linus Torvalds [Sat, 9 Apr 2005 22:47:03 +0000 (15:47 -0700)]
Make fsck-cache warn about old-style tree objects that have full
pathnames in them. We're migrating away from that.

This will cause tons of warnings for the current "sparse" archive,
but hell, better now than later.

19 years agoTeach "fsck" and "read-tree" about recursive tree-nodes.
Linus Torvalds [Sat, 9 Apr 2005 22:36:41 +0000 (15:36 -0700)]
Teach "fsck" and "read-tree" about recursive tree-nodes.

This is totally untested, since we can't actually _write_ things that
way yet, but I'll get to that next, I hope. That should fix the
huge wasted space for kernel-sized tree objects.

19 years agoMake "fsck-cache" print out all the root commits it finds.
Linus Torvalds [Sat, 9 Apr 2005 20:02:30 +0000 (13:02 -0700)]
Make "fsck-cache" print out all the root commits it finds.

Once I do the reference tracking, I'll also make it print out all the
HEAD commits it finds, which is even more interesting.

19 years agoAdd "diff-tree" program to show which files have changed between two trees.
Linus Torvalds [Sat, 9 Apr 2005 20:00:54 +0000 (13:00 -0700)]
Add "diff-tree" program to show which files have changed between two trees.

Very useful for creating diffs efficiently, and in general to see what has
changed in the namespace.

19 years agoExport "cache_name_compare()" helper function.
Linus Torvalds [Sat, 9 Apr 2005 19:59:11 +0000 (12:59 -0700)]
Export "cache_name_compare()" helper function.

The "diff-tree" program needs it.

19 years agoMake "read-tree" read the tree into the current directory cache.
Linus Torvalds [Sat, 9 Apr 2005 19:11:25 +0000 (12:11 -0700)]
Make "read-tree" read the tree into the current directory cache.

It will no longer update the actual working directory, just the
cache. To update the working directory, you need to use "checkout-cache".

19 years agoMake "write_cache()" and friends available as generic routines.
Linus Torvalds [Sat, 9 Apr 2005 19:09:27 +0000 (12:09 -0700)]
Make "write_cache()" and friends available as generic routines.

This is needed for the change to make "read-tree" just read into the
cache (and then you do a "checkout-cache" to update your current dir
contents).

19 years agoFix "checkout-cache.c" mis-use of read_sha1_file() interface.
Linus Torvalds [Sat, 9 Apr 2005 18:24:41 +0000 (11:24 -0700)]
Fix "checkout-cache.c" mis-use of read_sha1_file() interface.

It's supposed to test the returned file type, not think that read_sha1_file()
tests it. Confusion from "cat-file" command line usage.

19 years agoFix up "checkout-cache" a bit
Linus Torvalds [Sat, 9 Apr 2005 16:59:44 +0000 (09:59 -0700)]
Fix up "checkout-cache" a bit

Make the warnings have newlines, and don't stop "checkout-cache -a"
just because a file already exists.

19 years agoAdd a "checkout-cache" command which does what the name suggests.
Linus Torvalds [Sat, 9 Apr 2005 16:53:05 +0000 (09:53 -0700)]
Add a "checkout-cache" command which does what the name suggests.

I'll also eventually change "read-tree" to only update the cache
information, instead of doing a checkout of the tree. Much nicer.

19 years agoMake the cache stat information comparator public.
Linus Torvalds [Sat, 9 Apr 2005 16:48:20 +0000 (09:48 -0700)]
Make the cache stat information comparator public.

Like the cache filename finder, it's a generically useful function,
rather than something specific to the current "show-diff" thing.

19 years agoMake "cache_name_pos()" available to others.
Linus Torvalds [Sat, 9 Apr 2005 16:26:55 +0000 (09:26 -0700)]
Make "cache_name_pos()" available to others.

It finds the cache entry position for a given name, and is
generally useful. Sure, everybody can just scan the active
cache array, but since it's sorted, you actually want to
search it with a binary search, so let's not duplicate that
logic all over the place.

19 years agoFix missing return values and some error tests for empty index files
Linus Torvalds [Sat, 9 Apr 2005 07:25:22 +0000 (00:25 -0700)]
Fix missing return values and some error tests for empty index files

Patches from Dave Jones and Ingo Molnar, but since I don't have any
infrastructure in place to use the old patch applicator scripts I
am trying to build up, I ended up fixing the thing by hand instead.

Credit where credit is due, though. Nice to see that people are
taking a look at the project even in this early stage.