2006-12-19 23:34:12 +01:00
|
|
|
#include "cache.h"
|
2006-09-08 10:05:34 +02:00
|
|
|
#include "wt-status.h"
|
|
|
|
#include "color.h"
|
|
|
|
#include "object.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "commit.h"
|
|
|
|
#include "diff.h"
|
|
|
|
#include "revision.h"
|
|
|
|
#include "diffcore.h"
|
|
|
|
|
|
|
|
int wt_status_use_color = 0;
|
|
|
|
static char wt_status_colors[][COLOR_MAXLEN] = {
|
|
|
|
"", /* WT_STATUS_HEADER: normal */
|
|
|
|
"\033[32m", /* WT_STATUS_UPDATED: green */
|
|
|
|
"\033[31m", /* WT_STATUS_CHANGED: red */
|
|
|
|
"\033[31m", /* WT_STATUS_UNTRACKED: red */
|
|
|
|
};
|
2007-01-12 00:34:41 +01:00
|
|
|
|
|
|
|
static const char use_add_msg[] =
|
|
|
|
"use \"git add <file>...\" to update what will be committed";
|
|
|
|
static const char use_add_rm_msg[] =
|
|
|
|
"use \"git add/rm <file>...\" to update what will be committed";
|
|
|
|
static const char use_add_to_include_msg[] =
|
|
|
|
"use \"git add <file>...\" to include in what will be committed";
|
2007-05-22 02:12:17 +02:00
|
|
|
static const char *excludes_file;
|
2006-09-08 10:05:34 +02:00
|
|
|
|
|
|
|
static int parse_status_slot(const char *var, int offset)
|
|
|
|
{
|
|
|
|
if (!strcasecmp(var+offset, "header"))
|
|
|
|
return WT_STATUS_HEADER;
|
2006-12-16 03:53:13 +01:00
|
|
|
if (!strcasecmp(var+offset, "updated")
|
|
|
|
|| !strcasecmp(var+offset, "added"))
|
2006-09-08 10:05:34 +02:00
|
|
|
return WT_STATUS_UPDATED;
|
|
|
|
if (!strcasecmp(var+offset, "changed"))
|
|
|
|
return WT_STATUS_CHANGED;
|
|
|
|
if (!strcasecmp(var+offset, "untracked"))
|
|
|
|
return WT_STATUS_UNTRACKED;
|
|
|
|
die("bad config variable '%s'", var);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* color(int slot)
|
|
|
|
{
|
|
|
|
return wt_status_use_color ? wt_status_colors[slot] : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
void wt_status_prepare(struct wt_status *s)
|
|
|
|
{
|
|
|
|
unsigned char sha1[20];
|
|
|
|
const char *head;
|
|
|
|
|
2007-02-10 01:22:42 +01:00
|
|
|
memset(s, 0, sizeof(*s));
|
2006-09-21 07:02:01 +02:00
|
|
|
head = resolve_ref("HEAD", sha1, 0, NULL);
|
2006-09-18 04:13:56 +02:00
|
|
|
s->branch = head ? xstrdup(head) : NULL;
|
2006-09-08 10:05:34 +02:00
|
|
|
s->reference = "HEAD";
|
2007-09-18 02:06:42 +02:00
|
|
|
s->fp = stdout;
|
2007-09-18 02:06:43 +02:00
|
|
|
s->index_file = get_index_file();
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
static void wt_status_print_cached_header(struct wt_status *s)
|
2007-01-02 20:26:21 +01:00
|
|
|
{
|
|
|
|
const char *c = color(WT_STATUS_HEADER);
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf_ln(s->fp, c, "# Changes to be committed:");
|
|
|
|
if (s->reference) {
|
|
|
|
color_fprintf_ln(s->fp, c, "# (use \"git reset %s <file>...\" to unstage)", s->reference);
|
2007-01-02 20:26:21 +01:00
|
|
|
} else {
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf_ln(s->fp, c, "# (use \"git rm --cached <file>...\" to unstage)");
|
2007-01-02 20:26:21 +01:00
|
|
|
}
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf_ln(s->fp, c, "#");
|
2007-01-02 20:26:21 +01:00
|
|
|
}
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
static void wt_status_print_header(struct wt_status *s,
|
|
|
|
const char *main, const char *sub)
|
2006-09-08 10:05:34 +02:00
|
|
|
{
|
|
|
|
const char *c = color(WT_STATUS_HEADER);
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf_ln(s->fp, c, "# %s:", main);
|
|
|
|
color_fprintf_ln(s->fp, c, "# (%s)", sub);
|
|
|
|
color_fprintf_ln(s->fp, c, "#");
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
static void wt_status_print_trailer(struct wt_status *s)
|
2006-09-08 10:05:34 +02:00
|
|
|
{
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf_ln(s->fp, color(WT_STATUS_HEADER), "#");
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
2006-11-08 22:20:46 +01:00
|
|
|
static const char *quote_crlf(const char *in, char *buf, size_t sz)
|
|
|
|
{
|
|
|
|
const char *scan;
|
|
|
|
char *out;
|
|
|
|
const char *ret = in;
|
|
|
|
|
|
|
|
for (scan = in, out = buf; *scan; scan++) {
|
|
|
|
int ch = *scan;
|
|
|
|
int quoted;
|
|
|
|
|
|
|
|
switch (ch) {
|
|
|
|
case '\n':
|
|
|
|
quoted = 'n';
|
|
|
|
break;
|
|
|
|
case '\r':
|
|
|
|
quoted = 'r';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*out++ = ch;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*out++ = '\\';
|
|
|
|
*out++ = quoted;
|
|
|
|
ret = buf;
|
|
|
|
}
|
|
|
|
*out = '\0';
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
static void wt_status_print_filepair(struct wt_status *s,
|
|
|
|
int t, struct diff_filepair *p)
|
2006-09-08 10:05:34 +02:00
|
|
|
{
|
|
|
|
const char *c = color(t);
|
2006-11-08 22:20:46 +01:00
|
|
|
const char *one, *two;
|
|
|
|
char onebuf[PATH_MAX], twobuf[PATH_MAX];
|
|
|
|
|
|
|
|
one = quote_crlf(p->one->path, onebuf, sizeof(onebuf));
|
|
|
|
two = quote_crlf(p->two->path, twobuf, sizeof(twobuf));
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, color(WT_STATUS_HEADER), "#\t");
|
2006-09-08 10:05:34 +02:00
|
|
|
switch (p->status) {
|
|
|
|
case DIFF_STATUS_ADDED:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "new file: %s", one);
|
2006-11-08 22:20:46 +01:00
|
|
|
break;
|
2006-09-08 10:05:34 +02:00
|
|
|
case DIFF_STATUS_COPIED:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "copied: %s -> %s", one, two);
|
2006-09-08 10:05:34 +02:00
|
|
|
break;
|
|
|
|
case DIFF_STATUS_DELETED:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "deleted: %s", one);
|
2006-11-08 22:20:46 +01:00
|
|
|
break;
|
2006-09-08 10:05:34 +02:00
|
|
|
case DIFF_STATUS_MODIFIED:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "modified: %s", one);
|
2006-11-08 22:20:46 +01:00
|
|
|
break;
|
2006-09-08 10:05:34 +02:00
|
|
|
case DIFF_STATUS_RENAMED:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "renamed: %s -> %s", one, two);
|
2006-09-08 10:05:34 +02:00
|
|
|
break;
|
|
|
|
case DIFF_STATUS_TYPE_CHANGED:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "typechange: %s", one);
|
2006-11-08 22:20:46 +01:00
|
|
|
break;
|
2006-09-08 10:05:34 +02:00
|
|
|
case DIFF_STATUS_UNKNOWN:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "unknown: %s", one);
|
2006-11-08 22:20:46 +01:00
|
|
|
break;
|
2006-09-08 10:05:34 +02:00
|
|
|
case DIFF_STATUS_UNMERGED:
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, c, "unmerged: %s", one);
|
2006-11-08 22:20:46 +01:00
|
|
|
break;
|
2006-09-08 10:05:34 +02:00
|
|
|
default:
|
|
|
|
die("bug: unhandled diff status %c", p->status);
|
|
|
|
}
|
2007-09-18 02:06:42 +02:00
|
|
|
fprintf(s->fp, "\n");
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wt_status_print_updated_cb(struct diff_queue_struct *q,
|
|
|
|
struct diff_options *options,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct wt_status *s = data;
|
|
|
|
int shown_header = 0;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < q->nr; i++) {
|
|
|
|
if (q->queue[i]->status == 'U')
|
|
|
|
continue;
|
|
|
|
if (!shown_header) {
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_cached_header(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
s->commitable = 1;
|
|
|
|
shown_header = 1;
|
|
|
|
}
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_filepair(s, WT_STATUS_UPDATED, q->queue[i]);
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
if (shown_header)
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_trailer(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wt_status_print_changed_cb(struct diff_queue_struct *q,
|
|
|
|
struct diff_options *options,
|
|
|
|
void *data)
|
|
|
|
{
|
2007-01-02 20:26:22 +01:00
|
|
|
struct wt_status *s = data;
|
2006-09-08 10:05:34 +02:00
|
|
|
int i;
|
2007-01-02 20:26:22 +01:00
|
|
|
if (q->nr) {
|
2007-01-12 00:34:41 +01:00
|
|
|
const char *msg = use_add_msg;
|
2007-01-10 23:25:03 +01:00
|
|
|
s->workdir_dirty = 1;
|
2007-01-12 00:34:41 +01:00
|
|
|
for (i = 0; i < q->nr; i++)
|
|
|
|
if (q->queue[i]->status == DIFF_STATUS_DELETED) {
|
|
|
|
msg = use_add_rm_msg;
|
|
|
|
break;
|
|
|
|
}
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_header(s, "Changed but not updated", msg);
|
2007-01-02 20:26:22 +01:00
|
|
|
}
|
2006-09-08 10:05:34 +02:00
|
|
|
for (i = 0; i < q->nr; i++)
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_filepair(s, WT_STATUS_CHANGED, q->queue[i]);
|
2006-09-08 10:05:34 +02:00
|
|
|
if (q->nr)
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_trailer(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
2007-02-10 03:51:40 +01:00
|
|
|
static void wt_read_cache(struct wt_status *s)
|
|
|
|
{
|
|
|
|
discard_cache();
|
2007-09-18 02:06:43 +02:00
|
|
|
read_cache_from(s->index_file);
|
2007-02-10 03:51:40 +01:00
|
|
|
}
|
|
|
|
|
2007-06-07 22:45:00 +02:00
|
|
|
static void wt_status_print_initial(struct wt_status *s)
|
2006-09-08 10:05:34 +02:00
|
|
|
{
|
|
|
|
int i;
|
2006-11-08 22:20:46 +01:00
|
|
|
char buf[PATH_MAX];
|
|
|
|
|
2007-02-10 03:51:40 +01:00
|
|
|
wt_read_cache(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
if (active_nr) {
|
|
|
|
s->commitable = 1;
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_cached_header(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
for (i = 0; i < active_nr; i++) {
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, color(WT_STATUS_HEADER), "#\t");
|
|
|
|
color_fprintf_ln(s->fp, color(WT_STATUS_UPDATED), "new file: %s",
|
2006-11-08 22:20:46 +01:00
|
|
|
quote_crlf(active_cache[i]->name,
|
|
|
|
buf, sizeof(buf)));
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
if (active_nr)
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_trailer(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wt_status_print_updated(struct wt_status *s)
|
|
|
|
{
|
|
|
|
struct rev_info rev;
|
|
|
|
init_revisions(&rev, NULL);
|
2006-11-05 23:22:15 +01:00
|
|
|
setup_revisions(0, NULL, &rev, s->reference);
|
2006-09-08 10:05:34 +02:00
|
|
|
rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
|
|
|
|
rev.diffopt.format_callback = wt_status_print_updated_cb;
|
|
|
|
rev.diffopt.format_callback_data = s;
|
|
|
|
rev.diffopt.detect_rename = 1;
|
Fix the rename detection limit checking
This adds more proper rename detection limits. Instead of just checking
the limit against the number of potential rename destinations, we verify
that the rename matrix (which is what really matters) doesn't grow
ridiculously large, and we also make sure that we don't overflow when
doing the matrix size calculation.
This also changes the default limits from unlimited, to a rename matrix
that is limited to 100 entries on a side. You can raise it with the config
entry, or by using the "-l<n>" command line flag, but at least the default
is now a sane number that avoids spending lots of time (and memory) in
situations that likely don't merit it.
The choice of default value is of course very debatable. Limiting the
rename matrix to a 100x100 size will mean that even if you have just one
obvious rename, but you also create (or delete) 10,000 files, the rename
matrix will be so big that we disable the heuristics. Sounds reasonable to
me, but let's see if people hit this (and, perhaps more importantly,
actually *care*) in real life.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-09-14 19:39:48 +02:00
|
|
|
rev.diffopt.rename_limit = 100;
|
2007-02-10 03:51:40 +01:00
|
|
|
wt_read_cache(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
run_diff_index(&rev, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wt_status_print_changed(struct wt_status *s)
|
|
|
|
{
|
|
|
|
struct rev_info rev;
|
|
|
|
init_revisions(&rev, "");
|
2006-11-05 23:22:15 +01:00
|
|
|
setup_revisions(0, NULL, &rev, NULL);
|
2006-09-08 10:05:34 +02:00
|
|
|
rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
|
|
|
|
rev.diffopt.format_callback = wt_status_print_changed_cb;
|
|
|
|
rev.diffopt.format_callback_data = s;
|
2007-02-10 03:51:40 +01:00
|
|
|
wt_read_cache(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
run_diff_files(&rev, 0);
|
|
|
|
}
|
|
|
|
|
2007-01-02 20:26:22 +01:00
|
|
|
static void wt_status_print_untracked(struct wt_status *s)
|
2006-09-08 10:05:34 +02:00
|
|
|
{
|
|
|
|
struct dir_struct dir;
|
|
|
|
const char *x;
|
|
|
|
int i;
|
|
|
|
int shown_header = 0;
|
|
|
|
|
|
|
|
memset(&dir, 0, sizeof(dir));
|
|
|
|
|
|
|
|
dir.exclude_per_dir = ".gitignore";
|
2006-09-12 22:45:12 +02:00
|
|
|
if (!s->untracked) {
|
|
|
|
dir.show_other_directories = 1;
|
|
|
|
dir.hide_empty_directories = 1;
|
|
|
|
}
|
2006-09-08 10:05:34 +02:00
|
|
|
x = git_path("info/exclude");
|
|
|
|
if (file_exists(x))
|
|
|
|
add_excludes_from_file(&dir, x);
|
2007-05-22 02:12:17 +02:00
|
|
|
if (excludes_file && file_exists(excludes_file))
|
|
|
|
add_excludes_from_file(&dir, excludes_file);
|
2006-09-08 10:05:34 +02:00
|
|
|
|
Optimize directory listing with pathspec limiter.
The way things are set up, you can now pass a "pathspec" to the
"read_directory()" function. If you pass NULL, it acts exactly
like it used to do (read everything). If you pass a non-NULL
pointer, it will simplify it into a "these are the prefixes
without any special characters", and stop any readdir() early if
the path in question doesn't match any of the prefixes.
NOTE! This does *not* obviate the need for the caller to do the *exact*
pathspec match later. It's a first-level filter on "read_directory()", but
it does not do the full pathspec thing. Maybe it should. But in the
meantime, builtin-add.c really does need to do first
read_directory(dir, .., pathspec);
if (pathspec)
prune_directory(dir, pathspec, baselen);
ie the "prune_directory()" part will do the *exact* pathspec pruning,
while the "read_directory()" will use the pathspec just to do some quick
high-level pruning of the directories it will recurse into.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-03-31 05:39:30 +02:00
|
|
|
read_directory(&dir, ".", "", 0, NULL);
|
2006-09-08 10:05:34 +02:00
|
|
|
for(i = 0; i < dir.nr; i++) {
|
|
|
|
/* check for matching entry, which is unmerged; lifted from
|
|
|
|
* builtin-ls-files:show_other_files */
|
|
|
|
struct dir_entry *ent = dir.entries[i];
|
|
|
|
int pos = cache_name_pos(ent->name, ent->len);
|
|
|
|
struct cache_entry *ce;
|
|
|
|
if (0 <= pos)
|
|
|
|
die("bug in wt_status_print_untracked");
|
|
|
|
pos = -pos - 1;
|
|
|
|
if (pos < active_nr) {
|
|
|
|
ce = active_cache[pos];
|
|
|
|
if (ce_namelen(ce) == ent->len &&
|
|
|
|
!memcmp(ce->name, ent->name, ent->len))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!shown_header) {
|
2007-01-10 23:25:03 +01:00
|
|
|
s->workdir_untracked = 1;
|
2007-09-18 02:06:42 +02:00
|
|
|
wt_status_print_header(s, "Untracked files",
|
2007-01-12 00:34:41 +01:00
|
|
|
use_add_to_include_msg);
|
2006-09-08 10:05:34 +02:00
|
|
|
shown_header = 1;
|
|
|
|
}
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf(s->fp, color(WT_STATUS_HEADER), "#\t");
|
|
|
|
color_fprintf_ln(s->fp, color(WT_STATUS_UNTRACKED), "%.*s",
|
2006-09-08 10:05:34 +02:00
|
|
|
ent->len, ent->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wt_status_print_verbose(struct wt_status *s)
|
|
|
|
{
|
|
|
|
struct rev_info rev;
|
|
|
|
init_revisions(&rev, NULL);
|
2006-11-05 23:22:15 +01:00
|
|
|
setup_revisions(0, NULL, &rev, s->reference);
|
2006-09-08 10:05:34 +02:00
|
|
|
rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
|
|
|
|
rev.diffopt.detect_rename = 1;
|
2007-02-10 03:51:40 +01:00
|
|
|
wt_read_cache(s);
|
2006-09-08 10:05:34 +02:00
|
|
|
run_diff_index(&rev, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void wt_status_print(struct wt_status *s)
|
|
|
|
{
|
2007-01-02 20:26:23 +01:00
|
|
|
unsigned char sha1[20];
|
|
|
|
s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0;
|
|
|
|
|
2007-01-03 10:09:34 +01:00
|
|
|
if (s->branch) {
|
|
|
|
const char *on_what = "On branch ";
|
|
|
|
const char *branch_name = s->branch;
|
Mechanical conversion to use prefixcmp()
This mechanically converts strncmp() to use prefixcmp(), but only when
the parameters match specific patterns, so that they can be verified
easily. Leftover from this will be fixed in a separate step, including
idiotic conversions like
if (!strncmp("foo", arg, 3))
=>
if (!(-prefixcmp(arg, "foo")))
This was done by using this script in px.perl
#!/usr/bin/perl -i.bak -p
if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
}
if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
}
and running:
$ git grep -l strncmp -- '*.c' | xargs perl px.perl
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-20 10:53:29 +01:00
|
|
|
if (!prefixcmp(branch_name, "refs/heads/"))
|
2007-01-03 10:09:34 +01:00
|
|
|
branch_name += 11;
|
|
|
|
else if (!strcmp(branch_name, "HEAD")) {
|
|
|
|
branch_name = "";
|
|
|
|
on_what = "Not currently on any branch.";
|
|
|
|
}
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf_ln(s->fp, color(WT_STATUS_HEADER),
|
2007-01-03 10:09:34 +01:00
|
|
|
"# %s%s", on_what, branch_name);
|
|
|
|
}
|
2006-09-08 10:05:34 +02:00
|
|
|
|
|
|
|
if (s->is_initial) {
|
2007-09-18 02:06:42 +02:00
|
|
|
color_fprintf_ln(s->fp, color(WT_STATUS_HEADER), "#");
|
|
|
|
color_fprintf_ln(s->fp, color(WT_STATUS_HEADER), "# Initial commit");
|
|
|
|
color_fprintf_ln(s->fp, color(WT_STATUS_HEADER), "#");
|
2006-09-08 10:05:34 +02:00
|
|
|
wt_status_print_initial(s);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wt_status_print_updated(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
wt_status_print_changed(s);
|
|
|
|
wt_status_print_untracked(s);
|
|
|
|
|
|
|
|
if (s->verbose && !s->is_initial)
|
|
|
|
wt_status_print_verbose(s);
|
2007-01-02 20:26:22 +01:00
|
|
|
if (!s->commitable) {
|
|
|
|
if (s->amend)
|
2007-09-18 02:06:42 +02:00
|
|
|
fprintf(s->fp, "# No changes\n");
|
2007-01-10 23:25:03 +01:00
|
|
|
else if (s->workdir_dirty)
|
2007-01-14 03:23:55 +01:00
|
|
|
printf("no changes added to commit (use \"git add\" and/or \"git commit -a\")\n");
|
2007-01-10 23:25:03 +01:00
|
|
|
else if (s->workdir_untracked)
|
|
|
|
printf("nothing added to commit but untracked files present (use \"git add\" to track)\n");
|
|
|
|
else if (s->is_initial)
|
|
|
|
printf("nothing to commit (create/copy files and use \"git add\" to track)\n");
|
|
|
|
else
|
|
|
|
printf("nothing to commit (working directory clean)\n");
|
2007-01-02 20:26:22 +01:00
|
|
|
}
|
2006-09-08 10:05:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int git_status_config(const char *k, const char *v)
|
|
|
|
{
|
2006-12-13 10:13:28 +01:00
|
|
|
if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
|
2006-09-08 10:05:34 +02:00
|
|
|
wt_status_use_color = git_config_colorbool(k, v);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-02-20 10:55:07 +01:00
|
|
|
if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
|
2006-09-08 10:05:34 +02:00
|
|
|
int slot = parse_status_slot(k, 13);
|
|
|
|
color_parse(v, k, wt_status_colors[slot]);
|
|
|
|
}
|
2007-05-22 02:12:17 +02:00
|
|
|
if (!strcmp(k, "core.excludesfile")) {
|
|
|
|
if (!v)
|
|
|
|
die("core.excludesfile without value");
|
|
|
|
excludes_file = xstrdup(v);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-09-08 10:05:34 +02:00
|
|
|
return git_default_config(k, v);
|
|
|
|
}
|