2006-04-21 19:27:34 +02:00
|
|
|
#ifndef BUILTIN_H
|
|
|
|
#define BUILTIN_H
|
|
|
|
|
2006-09-16 07:47:21 +02:00
|
|
|
#include "git-compat-util.h"
|
2006-04-21 19:27:34 +02:00
|
|
|
|
|
|
|
extern const char git_version_string[];
|
2006-07-30 23:42:25 +02:00
|
|
|
extern const char git_usage_string[];
|
2006-04-21 19:27:34 +02:00
|
|
|
|
2006-07-30 23:42:25 +02:00
|
|
|
extern void help_unknown_cmd(const char *cmd);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int mailinfo(FILE *in, FILE *out, int ks, const char *encoding, const char *msg, const char *patch);
|
|
|
|
extern int split_mbox(const char **mbox, const char *dir, int allow_bare, int nr_prec, int skip);
|
|
|
|
extern void stripspace(FILE *in, FILE *out);
|
|
|
|
extern int write_tree(unsigned char *sha1, int missing_ok, const char *prefix);
|
2006-10-23 01:01:23 +02:00
|
|
|
extern void prune_packed_objects(int);
|
2006-04-21 19:27:34 +02:00
|
|
|
|
2006-07-29 07:44:25 +02:00
|
|
|
extern int cmd_add(int argc, const char **argv, const char *prefix);
|
2006-10-09 12:32:05 +02:00
|
|
|
extern int cmd_annotate(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_apply(int argc, const char **argv, const char *prefix);
|
Add git-archive
git-archive is a command to make TAR and ZIP archives of a git tree.
It helps prevent a proliferation of git-{format}-tree commands.
Instead of directly calling git-{tar,zip}-tree command, it defines
a very simple API, that archiver should implement and register in
"git-archive.c". This API is made up by 2 functions whose prototype
is defined in "archive.h" file.
- The first one is used to parse 'extra' parameters which have
signification only for the specific archiver. That would allow
different archive backends to have different kind of options.
- The second one is used to ask to an archive backend to build
the archive given some already resolved parameters.
The main reason for making this API is to avoid using
git-{tar,zip}-tree commands, hence making them useless. Maybe it's
time for them to die ?
It also implements remote operations by defining a very simple
protocol: it first sends the name of the specific uploader followed
the repository name (git-upload-tar git://example.org/repo.git).
Then it sends options. It's done by sending a sequence of one
argument per packet, with prefix "argument ", followed by a flush.
The remote protocol is implemented in "git-archive.c" for client
side and is triggered by "--remote=<repo>" option. For example,
to fetch a TAR archive in a remote repo, you can issue:
$ git archive --format=tar --remote=git://xxx/yyy/zzz.git HEAD
We choose to not make a new command "git-fetch-archive" for example,
avoind one more GIT command which should be nice for users (less
commands to remember, keeps existing --remote option).
Signed-off-by: Franck Bui-Huu <vagabon.xyz@gmail.com>
Acked-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-07 15:12:02 +02:00
|
|
|
extern int cmd_archive(int argc, const char **argv, const char *prefix);
|
2006-11-09 03:47:54 +01:00
|
|
|
extern int cmd_blame(int argc, const char **argv, const char *prefix);
|
2006-10-23 23:27:45 +02:00
|
|
|
extern int cmd_branch(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_cat_file(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_checkout_index(int argc, const char **argv, const char *prefix);
|
2006-07-29 07:44:25 +02:00
|
|
|
extern int cmd_check_ref_format(int argc, const char **argv, const char *prefix);
|
2006-10-24 01:01:57 +02:00
|
|
|
extern int cmd_cherry(int argc, const char **argv, const char *prefix);
|
2006-07-29 07:44:25 +02:00
|
|
|
extern int cmd_commit_tree(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_count_objects(int argc, const char **argv, const char *prefix);
|
2006-07-29 07:44:25 +02:00
|
|
|
extern int cmd_diff_files(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_diff_index(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_diff(int argc, const char **argv, const char *prefix);
|
2006-07-29 07:44:25 +02:00
|
|
|
extern int cmd_diff_stages(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_diff_tree(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_fmt_merge_msg(int argc, const char **argv, const char *prefix);
|
2006-09-15 22:30:02 +02:00
|
|
|
extern int cmd_for_each_ref(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_format_patch(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_get_tar_commit_id(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_grep(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_help(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_init_db(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_log(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_ls_files(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_ls_tree(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_mailinfo(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_mailsplit(int argc, const char **argv, const char *prefix);
|
2006-12-06 16:26:06 +01:00
|
|
|
extern int cmd_merge_file(int argc, const char **argv, const char *prefix);
|
2006-07-29 10:54:54 +02:00
|
|
|
extern int cmd_mv(int argc, const char **argv, const char *prefix);
|
2006-08-03 17:24:35 +02:00
|
|
|
extern int cmd_name_rev(int argc, const char **argv, const char *prefix);
|
2006-08-03 17:24:36 +02:00
|
|
|
extern int cmd_pack_objects(int argc, const char **argv, const char *prefix);
|
2006-10-20 01:00:04 +02:00
|
|
|
extern int cmd_pickaxe(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_prune(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_prune_packed(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_push(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_read_tree(int argc, const char **argv, const char *prefix);
|
2006-12-19 09:23:12 +01:00
|
|
|
extern int cmd_reflog(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_repo_config(int argc, const char **argv, const char *prefix);
|
2006-12-20 17:39:41 +01:00
|
|
|
extern int cmd_rerere(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_rev_list(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_rev_parse(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_rm(int argc, const char **argv, const char *prefix);
|
2006-09-08 10:05:34 +02:00
|
|
|
extern int cmd_runstatus(int argc, const char **argv, const char *prefix);
|
2006-10-22 13:23:31 +02:00
|
|
|
extern int cmd_shortlog(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_show(int argc, const char **argv, const char *prefix);
|
2006-09-15 22:30:02 +02:00
|
|
|
extern int cmd_show_branch(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_stripspace(int argc, const char **argv, const char *prefix);
|
2006-08-03 17:24:38 +02:00
|
|
|
extern int cmd_symbolic_ref(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_tar_tree(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_unpack_objects(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_update_index(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_update_ref(int argc, const char **argv, const char *prefix);
|
2006-09-07 15:12:05 +02:00
|
|
|
extern int cmd_upload_archive(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_upload_tar(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_version(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_whatchanged(int argc, const char **argv, const char *prefix);
|
2006-07-29 07:44:25 +02:00
|
|
|
extern int cmd_write_tree(int argc, const char **argv, const char *prefix);
|
2006-08-10 17:02:38 +02:00
|
|
|
extern int cmd_verify_pack(int argc, const char **argv, const char *prefix);
|
Add "git show-ref" builtin command
It's kind of like "git peek-remote", but works only locally (and thus
avoids the whole overhead of git_connect()) and has some extra
verification features.
For example, it allows you to filter the results, and to choose whether
you want the tag dereferencing or not. You can also use it to just test
whether a particular ref exists.
For example:
git show-ref master
will show all references called "master", whether tags or heads or
anything else, and regardless of how deep in the reference naming
hierarchy they are (so it would show "refs/heads/master" but also
"refs/remote/other-repo/master").
When using the "--verify" flag, the command requires an exact ref path:
git show-ref --verify refs/heads/master
will only match the exact branch called "master".
If nothing matches, show-ref will return an error code of 1, and in the
case of verification, it will show an error message.
For scripting, you can ask it to be quiet with the "--quiet" flag, which
allows you to do things like
git-show-ref --quiet --verify -- "refs/heads/$headname" ||
echo "$headname is not a valid branch"
to check whether a particular branch exists or not (notice how we don't
actually want to show any results, and we want to use the full refname for
it in order to not trigger the problem with ambiguous partial matches).
To show only tags, or only proper branch heads, use "--tags" and/or
"--heads" respectively (using both means that it shows tags _and_ heads,
but not other random references under the refs/ subdirectory).
To do automatic tag object dereferencing, use the "-d" or "--dereference"
flag, so you can do
git show-ref --tags --dereference
to get a listing of all tags together with what they dereference.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-15 20:19:32 +02:00
|
|
|
extern int cmd_show_ref(int argc, const char **argv, const char *prefix);
|
Start handling references internally as a sorted in-memory list
This also adds some very rudimentary support for the notion of packed
refs. HOWEVER! At this point it isn't used to actually look up a ref
yet, only for listing them (ie "for_each_ref()" and friends see the
packed refs, but none of the other single-ref lookup routines).
Note how we keep two separate lists: one for the loose refs, and one for
the packed refs we read. That's so that we can easily keep the two apart,
and read only one set or the other (and still always make sure that the
loose refs take precedence).
[ From this, it's not actually obvious why we'd keep the two separate
lists, but it's important to have the packed refs on their own list
later on, when I add support for looking up a single loose one.
For that case, we will want to read _just_ the packed refs in case the
single-ref lookup fails, yet we may end up needing the other list at
some point in the future, so keeping them separated is important ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-12 01:37:32 +02:00
|
|
|
extern int cmd_pack_refs(int argc, const char **argv, const char *prefix);
|
2006-06-13 22:21:50 +02:00
|
|
|
|
2006-04-21 19:27:34 +02:00
|
|
|
#endif
|