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"
|
2008-06-27 18:21:59 +02:00
|
|
|
#include "strbuf.h"
|
2008-07-01 04:37:49 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "commit.h"
|
2010-02-13 22:28:20 +01:00
|
|
|
#include "notes.h"
|
2006-04-21 19:27:34 +02:00
|
|
|
|
2010-09-08 19:59:53 +02:00
|
|
|
#define DEFAULT_MERGE_LOG_LEN 20
|
|
|
|
|
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[];
|
2008-06-05 23:15:36 +02:00
|
|
|
extern const char git_more_info_string[];
|
2006-04-21 19:27:34 +02:00
|
|
|
|
2006-10-23 01:01:23 +02:00
|
|
|
extern void prune_packed_objects(int);
|
2010-09-08 19:59:53 +02:00
|
|
|
extern int fmt_merge_msg(struct strbuf *in, struct strbuf *out,
|
|
|
|
int merge_title, int shortlog_len);
|
2010-11-09 22:49:47 +01:00
|
|
|
extern void commit_notes(struct notes_tree *t, const char *msg);
|
2010-03-12 18:04:32 +01:00
|
|
|
|
|
|
|
struct notes_rewrite_cfg {
|
|
|
|
struct notes_tree **trees;
|
|
|
|
const char *cmd;
|
|
|
|
int enabled;
|
2010-06-23 21:40:19 +02:00
|
|
|
combine_notes_fn combine;
|
2010-03-12 18:04:32 +01:00
|
|
|
struct string_list *refs;
|
|
|
|
int refs_from_env;
|
|
|
|
int mode_from_env;
|
|
|
|
};
|
|
|
|
|
2010-06-23 21:40:19 +02:00
|
|
|
combine_notes_fn parse_combine_notes_fn(const char *v);
|
2010-03-12 18:04:32 +01:00
|
|
|
struct notes_rewrite_cfg *init_copy_notes_for_rewrite(const char *cmd);
|
|
|
|
int copy_note_for_rewrite(struct notes_rewrite_cfg *c,
|
|
|
|
const unsigned char *from_obj, const unsigned char *to_obj);
|
|
|
|
void finish_copy_notes_for_rewrite(struct notes_rewrite_cfg *c);
|
|
|
|
|
2008-07-21 23:28:49 +02:00
|
|
|
extern int check_pager_config(const char *cmd);
|
2006-04-21 19:27:34 +02:00
|
|
|
|
2010-09-29 13:35:24 +02:00
|
|
|
extern int textconv_object(const char *path, unsigned mode, const unsigned char *sha1, char **buf, unsigned long *buf_size);
|
2010-06-15 17:50:28 +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);
|
2009-03-26 05:55:54 +01:00
|
|
|
extern int cmd_bisect__helper(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);
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 01:59:14 +01:00
|
|
|
extern int cmd_bundle(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);
|
Build in checkout
The only differences in behavior should be:
- git checkout -m with non-trivial merging won't print out
merge-recursive messages (see the change in t7201-co.sh)
- git checkout -- paths... will give a sensible error message if
HEAD is invalid as a commit.
- some intermediate states which were written to disk in the shell
version (in particular, index states) are only kept in memory in
this version, and therefore these can no longer be revealed by
later write operations becoming impossible.
- when we change branches, we discard MERGE_MSG, SQUASH_MSG, and
rr-cache/MERGE_RR, like reset always has.
I'm not 100% sure I got the merge recursive setup exactly right; the
base for a non-trivial merge in the shell code doesn't seem
theoretically justified to me, but I tried to match it anyway, and the
tests all pass this way.
Other than these items, the results should be identical to the shell
version, so far as I can tell.
[jc: squashed lock-file fix from Dscho in]
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-02-07 17:40:23 +01:00
|
|
|
extern int cmd_checkout(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_checkout_index(int argc, const char **argv, const char *prefix);
|
Add basic infrastructure to assign attributes to paths
This adds the basic infrastructure to assign attributes to
paths, in a way similar to what the exclusion mechanism does
based on $GIT_DIR/info/exclude and .gitignore files.
An attribute is just a simple string that does not contain any
whitespace. They can be specified in $GIT_DIR/info/attributes
file, and .gitattributes file in each directory.
Each line in these files defines a pattern matching rule.
Similar to the exclusion mechanism, a later match overrides an
earlier match in the same file, and entries from .gitattributes
file in the same directory takes precedence over the ones from
parent directories. Lines in $GIT_DIR/info/attributes file are
used as the lowest precedence default rules.
A line is either a comment (an empty line, or a line that begins
with a '#'), or a rule, which is a whitespace separated list of
tokens. The first token on the line is a shell glob pattern.
The rest are names of attributes, each of which can optionally
be prefixed with '!'. Such a line means "if a path matches this
glob, this attribute is set (or unset -- if the attribute name
is prefixed with '!'). For glob matching, the same "if the
pattern does not have a slash in it, the basename of the path is
matched with fnmatch(3) against the pattern, otherwise, the path
is matched with the pattern with FNM_PATHNAME" rule as the
exclusion mechanism is used.
This does not define what an attribute means. Tying an
attribute to various effects it has on git operation for paths
that have it will be specified separately.
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-04-12 10:07:32 +02:00
|
|
|
extern int cmd_check_attr(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);
|
2007-03-01 05:26:30 +01:00
|
|
|
extern int cmd_cherry_pick(int argc, const char **argv, const char *prefix);
|
2008-04-27 19:39:30 +02:00
|
|
|
extern int cmd_clone(int argc, const char **argv, const char *prefix);
|
2007-11-12 02:48:47 +01:00
|
|
|
extern int cmd_clean(int argc, const char **argv, const char *prefix);
|
2007-11-08 17:59:00 +01:00
|
|
|
extern int cmd_commit(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);
|
2011-02-12 14:24:10 +01:00
|
|
|
extern int cmd_config(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);
|
2007-01-10 12:36:36 +01:00
|
|
|
extern int cmd_describe(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_tree(int argc, const char **argv, const char *prefix);
|
2007-12-02 15:14:13 +01:00
|
|
|
extern int cmd_fast_export(int argc, const char **argv, const char *prefix);
|
2007-09-11 05:03:25 +02:00
|
|
|
extern int cmd_fetch(int argc, const char **argv, const char *prefix);
|
2007-09-11 05:03:00 +02:00
|
|
|
extern int cmd_fetch_pack(int argc, const char **argv, const char *prefix);
|
2006-07-29 07:44:25 +02:00
|
|
|
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);
|
2007-01-29 16:48:06 +01:00
|
|
|
extern int cmd_fsck(int argc, const char **argv, const char *prefix);
|
2007-03-14 02:58:22 +01:00
|
|
|
extern int cmd_gc(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
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);
|
2010-01-22 04:50:11 +01:00
|
|
|
extern int cmd_hash_object(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_help(int argc, const char **argv, const char *prefix);
|
2007-09-11 05:02:45 +02:00
|
|
|
extern int cmd_http_fetch(int argc, const char **argv, const char *prefix);
|
2010-01-22 16:55:19 +01:00
|
|
|
extern int cmd_index_pack(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
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);
|
2007-02-08 18:51:56 +01:00
|
|
|
extern int cmd_log_reflog(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
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);
|
2007-11-04 21:51:17 +01:00
|
|
|
extern int cmd_ls_remote(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_mailinfo(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_mailsplit(int argc, const char **argv, const char *prefix);
|
2008-07-07 19:24:20 +02:00
|
|
|
extern int cmd_merge(int argc, const char **argv, const char *prefix);
|
2007-01-09 09:50:02 +01:00
|
|
|
extern int cmd_merge_base(int argc, const char **argv, const char *prefix);
|
2010-01-22 16:29:21 +01:00
|
|
|
extern int cmd_merge_index(int argc, const char **argv, const char *prefix);
|
2007-11-22 21:19:40 +01:00
|
|
|
extern int cmd_merge_ours(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);
|
2008-02-07 17:40:05 +01:00
|
|
|
extern int cmd_merge_recursive(int argc, const char **argv, const char *prefix);
|
2010-01-22 03:25:20 +01:00
|
|
|
extern int cmd_merge_tree(int argc, const char **argv, const char *prefix);
|
2010-01-22 16:34:44 +01:00
|
|
|
extern int cmd_mktag(int argc, const char **argv, const char *prefix);
|
2009-05-10 19:28:18 +02:00
|
|
|
extern int cmd_mktree(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);
|
2010-02-13 22:28:20 +01:00
|
|
|
extern int cmd_notes(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);
|
2010-01-22 16:42:14 +01:00
|
|
|
extern int cmd_pack_redundant(int argc, const char **argv, const char *prefix);
|
2010-01-22 05:31:25 +01:00
|
|
|
extern int cmd_patch_id(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);
|
2008-09-09 10:27:08 +02:00
|
|
|
extern int cmd_receive_pack(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);
|
2008-02-29 02:45:45 +01:00
|
|
|
extern int cmd_remote(int argc, const char **argv, const char *prefix);
|
2010-10-12 18:39:43 +02:00
|
|
|
extern int cmd_remote_ext(int argc, const char **argv, const char *prefix);
|
2010-10-12 18:39:42 +02:00
|
|
|
extern int cmd_remote_fd(int argc, const char **argv, const char *prefix);
|
2011-02-12 14:24:10 +01: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);
|
2007-09-11 05:19:34 +02:00
|
|
|
extern int cmd_reset(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);
|
2007-03-01 05:26:30 +01:00
|
|
|
extern int cmd_revert(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
extern int cmd_rm(int argc, const char **argv, const char *prefix);
|
2007-10-30 03:03:39 +01:00
|
|
|
extern int cmd_send_pack(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);
|
2007-11-08 17:59:00 +01:00
|
|
|
extern int cmd_status(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);
|
2007-07-20 01:42:28 +02:00
|
|
|
extern int cmd_tag(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);
|
2010-01-22 16:38:03 +01:00
|
|
|
extern int cmd_unpack_file(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
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);
|
2009-08-29 11:04:52 +02:00
|
|
|
extern int cmd_update_server_info(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);
|
2010-01-22 05:21:55 +01:00
|
|
|
extern int cmd_var(int argc, const char **argv, const char *prefix);
|
2007-07-27 06:07:34 +02:00
|
|
|
extern int cmd_verify_tag(int argc, const char **argv, const char *prefix);
|
2006-08-04 10:51:04 +02:00
|
|
|
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);
|
2009-02-02 06:12:44 +01:00
|
|
|
extern int cmd_replace(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
|