10 #include "run-command.h"
11 #include "argv-array.h"
14 #include "submodule.h"
21 static const char cut_line
[] =
22 "------------------------ >8 ------------------------\n";
24 static char default_wt_status_colors
[][COLOR_MAXLEN
] = {
25 GIT_COLOR_NORMAL
, /* WT_STATUS_HEADER */
26 GIT_COLOR_GREEN
, /* WT_STATUS_UPDATED */
27 GIT_COLOR_RED
, /* WT_STATUS_CHANGED */
28 GIT_COLOR_RED
, /* WT_STATUS_UNTRACKED */
29 GIT_COLOR_RED
, /* WT_STATUS_NOBRANCH */
30 GIT_COLOR_RED
, /* WT_STATUS_UNMERGED */
31 GIT_COLOR_GREEN
, /* WT_STATUS_LOCAL_BRANCH */
32 GIT_COLOR_RED
, /* WT_STATUS_REMOTE_BRANCH */
33 GIT_COLOR_NIL
, /* WT_STATUS_ONBRANCH */
36 static const char *color(int slot
, struct wt_status
*s
)
39 if (want_color(s
->use_color
))
40 c
= s
->color_palette
[slot
];
41 if (slot
== WT_STATUS_ONBRANCH
&& color_is_nil(c
))
42 c
= s
->color_palette
[WT_STATUS_HEADER
];
46 static void status_vprintf(struct wt_status
*s
, int at_bol
, const char *color
,
47 const char *fmt
, va_list ap
, const char *trail
)
49 struct strbuf sb
= STRBUF_INIT
;
50 struct strbuf linebuf
= STRBUF_INIT
;
51 const char *line
, *eol
;
53 strbuf_vaddf(&sb
, fmt
, ap
);
55 if (s
->display_comment_prefix
) {
56 strbuf_addch(&sb
, comment_line_char
);
58 strbuf_addch(&sb
, ' ');
60 color_print_strbuf(s
->fp
, color
, &sb
);
62 fprintf(s
->fp
, "%s", trail
);
66 for (line
= sb
.buf
; *line
; line
= eol
+ 1) {
67 eol
= strchr(line
, '\n');
69 strbuf_reset(&linebuf
);
70 if (at_bol
&& s
->display_comment_prefix
) {
71 strbuf_addch(&linebuf
, comment_line_char
);
72 if (*line
!= '\n' && *line
!= '\t')
73 strbuf_addch(&linebuf
, ' ');
76 strbuf_add(&linebuf
, line
, eol
- line
);
78 strbuf_addstr(&linebuf
, line
);
79 color_print_strbuf(s
->fp
, color
, &linebuf
);
87 fprintf(s
->fp
, "%s", trail
);
88 strbuf_release(&linebuf
);
92 void status_printf_ln(struct wt_status
*s
, const char *color
,
98 status_vprintf(s
, 1, color
, fmt
, ap
, "\n");
102 void status_printf(struct wt_status
*s
, const char *color
,
103 const char *fmt
, ...)
108 status_vprintf(s
, 1, color
, fmt
, ap
, NULL
);
112 static void status_printf_more(struct wt_status
*s
, const char *color
,
113 const char *fmt
, ...)
118 status_vprintf(s
, 0, color
, fmt
, ap
, NULL
);
122 void wt_status_prepare(struct repository
*r
, struct wt_status
*s
)
124 memset(s
, 0, sizeof(*s
));
126 memcpy(s
->color_palette
, default_wt_status_colors
,
127 sizeof(default_wt_status_colors
));
128 s
->show_untracked_files
= SHOW_NORMAL_UNTRACKED_FILES
;
130 s
->relative_paths
= 1;
131 s
->branch
= resolve_refdup("HEAD", 0, NULL
, NULL
);
132 s
->reference
= "HEAD";
134 s
->index_file
= get_index_file();
135 s
->change
.strdup_strings
= 1;
136 s
->untracked
.strdup_strings
= 1;
137 s
->ignored
.strdup_strings
= 1;
138 s
->show_branch
= -1; /* unspecified */
140 s
->ahead_behind_flags
= AHEAD_BEHIND_UNSPECIFIED
;
141 s
->display_comment_prefix
= 0;
142 s
->detect_rename
= -1;
143 s
->rename_score
= -1;
144 s
->rename_limit
= -1;
147 static void wt_longstatus_print_unmerged_header(struct wt_status
*s
)
150 int del_mod_conflict
= 0;
151 int both_deleted
= 0;
153 const char *c
= color(WT_STATUS_HEADER
, s
);
155 status_printf_ln(s
, c
, _("Unmerged paths:"));
157 for (i
= 0; i
< s
->change
.nr
; i
++) {
158 struct string_list_item
*it
= &(s
->change
.items
[i
]);
159 struct wt_status_change_data
*d
= it
->util
;
161 switch (d
->stagemask
) {
169 del_mod_conflict
= 1;
179 if (s
->whence
!= FROM_COMMIT
)
181 else if (!s
->is_initial
)
182 status_printf_ln(s
, c
, _(" (use \"git reset %s <file>...\" to unstage)"), s
->reference
);
184 status_printf_ln(s
, c
, _(" (use \"git rm --cached <file>...\" to unstage)"));
187 if (!del_mod_conflict
)
188 status_printf_ln(s
, c
, _(" (use \"git add <file>...\" to mark resolution)"));
190 status_printf_ln(s
, c
, _(" (use \"git add/rm <file>...\" as appropriate to mark resolution)"));
191 } else if (!del_mod_conflict
&& !not_deleted
) {
192 status_printf_ln(s
, c
, _(" (use \"git rm <file>...\" to mark resolution)"));
194 status_printf_ln(s
, c
, _(" (use \"git add/rm <file>...\" as appropriate to mark resolution)"));
196 status_printf_ln(s
, c
, "%s", "");
199 static void wt_longstatus_print_cached_header(struct wt_status
*s
)
201 const char *c
= color(WT_STATUS_HEADER
, s
);
203 status_printf_ln(s
, c
, _("Changes to be committed:"));
206 if (s
->whence
!= FROM_COMMIT
)
207 ; /* NEEDSWORK: use "git reset --unresolve"??? */
208 else if (!s
->is_initial
)
209 status_printf_ln(s
, c
, _(" (use \"git reset %s <file>...\" to unstage)"), s
->reference
);
211 status_printf_ln(s
, c
, _(" (use \"git rm --cached <file>...\" to unstage)"));
212 status_printf_ln(s
, c
, "%s", "");
215 static void wt_longstatus_print_dirty_header(struct wt_status
*s
,
217 int has_dirty_submodules
)
219 const char *c
= color(WT_STATUS_HEADER
, s
);
221 status_printf_ln(s
, c
, _("Changes not staged for commit:"));
225 status_printf_ln(s
, c
, _(" (use \"git add <file>...\" to update what will be committed)"));
227 status_printf_ln(s
, c
, _(" (use \"git add/rm <file>...\" to update what will be committed)"));
228 status_printf_ln(s
, c
, _(" (use \"git checkout -- <file>...\" to discard changes in working directory)"));
229 if (has_dirty_submodules
)
230 status_printf_ln(s
, c
, _(" (commit or discard the untracked or modified content in submodules)"));
231 status_printf_ln(s
, c
, "%s", "");
234 static void wt_longstatus_print_other_header(struct wt_status
*s
,
238 const char *c
= color(WT_STATUS_HEADER
, s
);
239 status_printf_ln(s
, c
, "%s:", what
);
242 status_printf_ln(s
, c
, _(" (use \"git %s <file>...\" to include in what will be committed)"), how
);
243 status_printf_ln(s
, c
, "%s", "");
246 static void wt_longstatus_print_trailer(struct wt_status
*s
)
248 status_printf_ln(s
, color(WT_STATUS_HEADER
, s
), "%s", "");
251 #define quote_path quote_path_relative
253 static const char *wt_status_unmerged_status_string(int stagemask
)
257 return _("both deleted:");
259 return _("added by us:");
261 return _("deleted by them:");
263 return _("added by them:");
265 return _("deleted by us:");
267 return _("both added:");
269 return _("both modified:");
271 BUG("unhandled unmerged status %x", stagemask
);
275 static const char *wt_status_diff_status_string(int status
)
278 case DIFF_STATUS_ADDED
:
279 return _("new file:");
280 case DIFF_STATUS_COPIED
:
282 case DIFF_STATUS_DELETED
:
283 return _("deleted:");
284 case DIFF_STATUS_MODIFIED
:
285 return _("modified:");
286 case DIFF_STATUS_RENAMED
:
287 return _("renamed:");
288 case DIFF_STATUS_TYPE_CHANGED
:
289 return _("typechange:");
290 case DIFF_STATUS_UNKNOWN
:
291 return _("unknown:");
292 case DIFF_STATUS_UNMERGED
:
293 return _("unmerged:");
299 static int maxwidth(const char *(*label
)(int), int minval
, int maxval
)
303 for (i
= minval
; i
<= maxval
; i
++) {
304 const char *s
= label(i
);
305 int len
= s
? utf8_strwidth(s
) : 0;
312 static void wt_longstatus_print_unmerged_data(struct wt_status
*s
,
313 struct string_list_item
*it
)
315 const char *c
= color(WT_STATUS_UNMERGED
, s
);
316 struct wt_status_change_data
*d
= it
->util
;
317 struct strbuf onebuf
= STRBUF_INIT
;
318 static char *padding
;
319 static int label_width
;
320 const char *one
, *how
;
324 label_width
= maxwidth(wt_status_unmerged_status_string
, 1, 7);
325 label_width
+= strlen(" ");
326 padding
= xmallocz(label_width
);
327 memset(padding
, ' ', label_width
);
330 one
= quote_path(it
->string
, s
->prefix
, &onebuf
);
331 status_printf(s
, color(WT_STATUS_HEADER
, s
), "\t");
333 how
= wt_status_unmerged_status_string(d
->stagemask
);
334 len
= label_width
- utf8_strwidth(how
);
335 status_printf_more(s
, c
, "%s%.*s%s\n", how
, len
, padding
, one
);
336 strbuf_release(&onebuf
);
339 static void wt_longstatus_print_change_data(struct wt_status
*s
,
341 struct string_list_item
*it
)
343 struct wt_status_change_data
*d
= it
->util
;
344 const char *c
= color(change_type
, s
);
348 const char *one
, *two
;
349 struct strbuf onebuf
= STRBUF_INIT
, twobuf
= STRBUF_INIT
;
350 struct strbuf extra
= STRBUF_INIT
;
351 static char *padding
;
352 static int label_width
;
357 /* If DIFF_STATUS_* uses outside the range [A..Z], we're in trouble */
358 label_width
= maxwidth(wt_status_diff_status_string
, 'A', 'Z');
359 label_width
+= strlen(" ");
360 padding
= xmallocz(label_width
);
361 memset(padding
, ' ', label_width
);
364 one_name
= two_name
= it
->string
;
365 switch (change_type
) {
366 case WT_STATUS_UPDATED
:
367 status
= d
->index_status
;
369 case WT_STATUS_CHANGED
:
370 if (d
->new_submodule_commits
|| d
->dirty_submodule
) {
371 strbuf_addstr(&extra
, " (");
372 if (d
->new_submodule_commits
)
373 strbuf_addstr(&extra
, _("new commits, "));
374 if (d
->dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
375 strbuf_addstr(&extra
, _("modified content, "));
376 if (d
->dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
)
377 strbuf_addstr(&extra
, _("untracked content, "));
378 strbuf_setlen(&extra
, extra
.len
- 2);
379 strbuf_addch(&extra
, ')');
381 status
= d
->worktree_status
;
384 BUG("unhandled change_type %d in wt_longstatus_print_change_data",
389 * Only pick up the rename it's relevant. If the rename is for
390 * the changed section and we're printing the updated section,
393 if (d
->rename_status
== status
)
394 one_name
= d
->rename_source
;
396 one
= quote_path(one_name
, s
->prefix
, &onebuf
);
397 two
= quote_path(two_name
, s
->prefix
, &twobuf
);
399 status_printf(s
, color(WT_STATUS_HEADER
, s
), "\t");
400 what
= wt_status_diff_status_string(status
);
402 BUG("unhandled diff status %c", status
);
403 len
= label_width
- utf8_strwidth(what
);
405 if (one_name
!= two_name
)
406 status_printf_more(s
, c
, "%s%.*s%s -> %s",
407 what
, len
, padding
, one
, two
);
409 status_printf_more(s
, c
, "%s%.*s%s",
410 what
, len
, padding
, one
);
412 status_printf_more(s
, color(WT_STATUS_HEADER
, s
), "%s", extra
.buf
);
413 strbuf_release(&extra
);
415 status_printf_more(s
, GIT_COLOR_NORMAL
, "\n");
416 strbuf_release(&onebuf
);
417 strbuf_release(&twobuf
);
420 static char short_submodule_status(struct wt_status_change_data
*d
)
422 if (d
->new_submodule_commits
)
424 if (d
->dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
426 if (d
->dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
)
428 return d
->worktree_status
;
431 static void wt_status_collect_changed_cb(struct diff_queue_struct
*q
,
432 struct diff_options
*options
,
435 struct wt_status
*s
= data
;
440 s
->workdir_dirty
= 1;
441 for (i
= 0; i
< q
->nr
; i
++) {
442 struct diff_filepair
*p
;
443 struct string_list_item
*it
;
444 struct wt_status_change_data
*d
;
447 it
= string_list_insert(&s
->change
, p
->two
->path
);
450 d
= xcalloc(1, sizeof(*d
));
453 if (!d
->worktree_status
)
454 d
->worktree_status
= p
->status
;
455 if (S_ISGITLINK(p
->two
->mode
)) {
456 d
->dirty_submodule
= p
->two
->dirty_submodule
;
457 d
->new_submodule_commits
= !oideq(&p
->one
->oid
,
459 if (s
->status_format
== STATUS_FORMAT_SHORT
)
460 d
->worktree_status
= short_submodule_status(d
);
464 case DIFF_STATUS_ADDED
:
465 d
->mode_worktree
= p
->two
->mode
;
468 case DIFF_STATUS_DELETED
:
469 d
->mode_index
= p
->one
->mode
;
470 oidcpy(&d
->oid_index
, &p
->one
->oid
);
471 /* mode_worktree is zero for a delete. */
474 case DIFF_STATUS_COPIED
:
475 case DIFF_STATUS_RENAMED
:
476 if (d
->rename_status
)
477 BUG("multiple renames on the same target? how?");
478 d
->rename_source
= xstrdup(p
->one
->path
);
479 d
->rename_score
= p
->score
* 100 / MAX_SCORE
;
480 d
->rename_status
= p
->status
;
482 case DIFF_STATUS_MODIFIED
:
483 case DIFF_STATUS_TYPE_CHANGED
:
484 case DIFF_STATUS_UNMERGED
:
485 d
->mode_index
= p
->one
->mode
;
486 d
->mode_worktree
= p
->two
->mode
;
487 oidcpy(&d
->oid_index
, &p
->one
->oid
);
491 BUG("unhandled diff-files status '%c'", p
->status
);
498 static int unmerged_mask(struct index_state
*istate
, const char *path
)
501 const struct cache_entry
*ce
;
503 pos
= index_name_pos(istate
, path
, strlen(path
));
509 while (pos
< istate
->cache_nr
) {
510 ce
= istate
->cache
[pos
++];
511 if (strcmp(ce
->name
, path
) || !ce_stage(ce
))
513 mask
|= (1 << (ce_stage(ce
) - 1));
518 static void wt_status_collect_updated_cb(struct diff_queue_struct
*q
,
519 struct diff_options
*options
,
522 struct wt_status
*s
= data
;
525 for (i
= 0; i
< q
->nr
; i
++) {
526 struct diff_filepair
*p
;
527 struct string_list_item
*it
;
528 struct wt_status_change_data
*d
;
531 it
= string_list_insert(&s
->change
, p
->two
->path
);
534 d
= xcalloc(1, sizeof(*d
));
537 if (!d
->index_status
)
538 d
->index_status
= p
->status
;
540 case DIFF_STATUS_ADDED
:
541 /* Leave {mode,oid}_head zero for an add. */
542 d
->mode_index
= p
->two
->mode
;
543 oidcpy(&d
->oid_index
, &p
->two
->oid
);
546 case DIFF_STATUS_DELETED
:
547 d
->mode_head
= p
->one
->mode
;
548 oidcpy(&d
->oid_head
, &p
->one
->oid
);
550 /* Leave {mode,oid}_index zero for a delete. */
553 case DIFF_STATUS_COPIED
:
554 case DIFF_STATUS_RENAMED
:
555 if (d
->rename_status
)
556 BUG("multiple renames on the same target? how?");
557 d
->rename_source
= xstrdup(p
->one
->path
);
558 d
->rename_score
= p
->score
* 100 / MAX_SCORE
;
559 d
->rename_status
= p
->status
;
561 case DIFF_STATUS_MODIFIED
:
562 case DIFF_STATUS_TYPE_CHANGED
:
563 d
->mode_head
= p
->one
->mode
;
564 d
->mode_index
= p
->two
->mode
;
565 oidcpy(&d
->oid_head
, &p
->one
->oid
);
566 oidcpy(&d
->oid_index
, &p
->two
->oid
);
569 case DIFF_STATUS_UNMERGED
:
570 d
->stagemask
= unmerged_mask(s
->repo
->index
,
573 * Don't bother setting {mode,oid}_{head,index} since the print
574 * code will output the stage values directly and not use the
575 * values in these fields.
580 BUG("unhandled diff-index status '%c'", p
->status
);
586 static void wt_status_collect_changes_worktree(struct wt_status
*s
)
590 repo_init_revisions(s
->repo
, &rev
, NULL
);
591 setup_revisions(0, NULL
, &rev
, NULL
);
592 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
593 rev
.diffopt
.flags
.dirty_submodules
= 1;
594 rev
.diffopt
.ita_invisible_in_index
= 1;
595 if (!s
->show_untracked_files
)
596 rev
.diffopt
.flags
.ignore_untracked_in_submodules
= 1;
597 if (s
->ignore_submodule_arg
) {
598 rev
.diffopt
.flags
.override_submodule_config
= 1;
599 handle_ignore_submodules_arg(&rev
.diffopt
, s
->ignore_submodule_arg
);
601 rev
.diffopt
.format_callback
= wt_status_collect_changed_cb
;
602 rev
.diffopt
.format_callback_data
= s
;
603 rev
.diffopt
.detect_rename
= s
->detect_rename
>= 0 ? s
->detect_rename
: rev
.diffopt
.detect_rename
;
604 rev
.diffopt
.rename_limit
= s
->rename_limit
>= 0 ? s
->rename_limit
: rev
.diffopt
.rename_limit
;
605 rev
.diffopt
.rename_score
= s
->rename_score
>= 0 ? s
->rename_score
: rev
.diffopt
.rename_score
;
606 copy_pathspec(&rev
.prune_data
, &s
->pathspec
);
607 run_diff_files(&rev
, 0);
610 static void wt_status_collect_changes_index(struct wt_status
*s
)
613 struct setup_revision_opt opt
;
615 repo_init_revisions(s
->repo
, &rev
, NULL
);
616 memset(&opt
, 0, sizeof(opt
));
617 opt
.def
= s
->is_initial
? empty_tree_oid_hex() : s
->reference
;
618 setup_revisions(0, NULL
, &rev
, &opt
);
620 rev
.diffopt
.flags
.override_submodule_config
= 1;
621 rev
.diffopt
.ita_invisible_in_index
= 1;
622 if (s
->ignore_submodule_arg
) {
623 handle_ignore_submodules_arg(&rev
.diffopt
, s
->ignore_submodule_arg
);
626 * Unless the user did explicitly request a submodule ignore
627 * mode by passing a command line option we do not ignore any
628 * changed submodule SHA-1s when comparing index and HEAD, no
629 * matter what is configured. Otherwise the user won't be
630 * shown any submodules she manually added (and which are
631 * staged to be committed), which would be really confusing.
633 handle_ignore_submodules_arg(&rev
.diffopt
, "dirty");
636 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
637 rev
.diffopt
.format_callback
= wt_status_collect_updated_cb
;
638 rev
.diffopt
.format_callback_data
= s
;
639 rev
.diffopt
.detect_rename
= s
->detect_rename
>= 0 ? s
->detect_rename
: rev
.diffopt
.detect_rename
;
640 rev
.diffopt
.rename_limit
= s
->rename_limit
>= 0 ? s
->rename_limit
: rev
.diffopt
.rename_limit
;
641 rev
.diffopt
.rename_score
= s
->rename_score
>= 0 ? s
->rename_score
: rev
.diffopt
.rename_score
;
642 copy_pathspec(&rev
.prune_data
, &s
->pathspec
);
643 run_diff_index(&rev
, 1);
646 static void wt_status_collect_changes_initial(struct wt_status
*s
)
648 struct index_state
*istate
= s
->repo
->index
;
651 for (i
= 0; i
< istate
->cache_nr
; i
++) {
652 struct string_list_item
*it
;
653 struct wt_status_change_data
*d
;
654 const struct cache_entry
*ce
= istate
->cache
[i
];
656 if (!ce_path_match(istate
, ce
, &s
->pathspec
, NULL
))
658 if (ce_intent_to_add(ce
))
660 it
= string_list_insert(&s
->change
, ce
->name
);
663 d
= xcalloc(1, sizeof(*d
));
667 d
->index_status
= DIFF_STATUS_UNMERGED
;
668 d
->stagemask
|= (1 << (ce_stage(ce
) - 1));
670 * Don't bother setting {mode,oid}_{head,index} since the print
671 * code will output the stage values directly and not use the
672 * values in these fields.
676 d
->index_status
= DIFF_STATUS_ADDED
;
677 /* Leave {mode,oid}_head zero for adds. */
678 d
->mode_index
= ce
->ce_mode
;
679 oidcpy(&d
->oid_index
, &ce
->oid
);
685 static void wt_status_collect_untracked(struct wt_status
*s
)
688 struct dir_struct dir
;
689 uint64_t t_begin
= getnanotime();
690 struct index_state
*istate
= s
->repo
->index
;
692 if (!s
->show_untracked_files
)
695 memset(&dir
, 0, sizeof(dir
));
696 if (s
->show_untracked_files
!= SHOW_ALL_UNTRACKED_FILES
)
698 DIR_SHOW_OTHER_DIRECTORIES
| DIR_HIDE_EMPTY_DIRECTORIES
;
699 if (s
->show_ignored_mode
) {
700 dir
.flags
|= DIR_SHOW_IGNORED_TOO
;
702 if (s
->show_ignored_mode
== SHOW_MATCHING_IGNORED
)
703 dir
.flags
|= DIR_SHOW_IGNORED_TOO_MODE_MATCHING
;
705 dir
.untracked
= istate
->untracked
;
708 setup_standard_excludes(&dir
);
710 fill_directory(&dir
, istate
, &s
->pathspec
);
712 for (i
= 0; i
< dir
.nr
; i
++) {
713 struct dir_entry
*ent
= dir
.entries
[i
];
714 if (index_name_is_other(istate
, ent
->name
, ent
->len
) &&
715 dir_path_match(istate
, ent
, &s
->pathspec
, 0, NULL
))
716 string_list_insert(&s
->untracked
, ent
->name
);
720 for (i
= 0; i
< dir
.ignored_nr
; i
++) {
721 struct dir_entry
*ent
= dir
.ignored
[i
];
722 if (index_name_is_other(istate
, ent
->name
, ent
->len
) &&
723 dir_path_match(istate
, ent
, &s
->pathspec
, 0, NULL
))
724 string_list_insert(&s
->ignored
, ent
->name
);
730 clear_directory(&dir
);
732 if (advice_status_u_option
)
733 s
->untracked_in_ms
= (getnanotime() - t_begin
) / 1000000;
736 static int has_unmerged(struct wt_status
*s
)
740 for (i
= 0; i
< s
->change
.nr
; i
++) {
741 struct wt_status_change_data
*d
;
742 d
= s
->change
.items
[i
].util
;
749 void wt_status_collect(struct wt_status
*s
)
751 trace2_region_enter("status", "worktrees", s
->repo
);
752 wt_status_collect_changes_worktree(s
);
753 trace2_region_leave("status", "worktrees", s
->repo
);
756 trace2_region_enter("status", "initial", s
->repo
);
757 wt_status_collect_changes_initial(s
);
758 trace2_region_leave("status", "initial", s
->repo
);
760 trace2_region_enter("status", "index", s
->repo
);
761 wt_status_collect_changes_index(s
);
762 trace2_region_leave("status", "index", s
->repo
);
765 trace2_region_enter("status", "untracked", s
->repo
);
766 wt_status_collect_untracked(s
);
767 trace2_region_leave("status", "untracked", s
->repo
);
769 wt_status_get_state(s
->repo
, &s
->state
, s
->branch
&& !strcmp(s
->branch
, "HEAD"));
770 if (s
->state
.merge_in_progress
&& !has_unmerged(s
))
774 void wt_status_collect_free_buffers(struct wt_status
*s
)
776 free(s
->state
.branch
);
778 free(s
->state
.detached_from
);
781 static void wt_longstatus_print_unmerged(struct wt_status
*s
)
783 int shown_header
= 0;
786 for (i
= 0; i
< s
->change
.nr
; i
++) {
787 struct wt_status_change_data
*d
;
788 struct string_list_item
*it
;
789 it
= &(s
->change
.items
[i
]);
794 wt_longstatus_print_unmerged_header(s
);
797 wt_longstatus_print_unmerged_data(s
, it
);
800 wt_longstatus_print_trailer(s
);
804 static void wt_longstatus_print_updated(struct wt_status
*s
)
806 int shown_header
= 0;
809 for (i
= 0; i
< s
->change
.nr
; i
++) {
810 struct wt_status_change_data
*d
;
811 struct string_list_item
*it
;
812 it
= &(s
->change
.items
[i
]);
814 if (!d
->index_status
||
815 d
->index_status
== DIFF_STATUS_UNMERGED
)
818 wt_longstatus_print_cached_header(s
);
821 wt_longstatus_print_change_data(s
, WT_STATUS_UPDATED
, it
);
824 wt_longstatus_print_trailer(s
);
830 * 1 : some change but no delete
832 static int wt_status_check_worktree_changes(struct wt_status
*s
,
833 int *dirty_submodules
)
838 *dirty_submodules
= 0;
840 for (i
= 0; i
< s
->change
.nr
; i
++) {
841 struct wt_status_change_data
*d
;
842 d
= s
->change
.items
[i
].util
;
843 if (!d
->worktree_status
||
844 d
->worktree_status
== DIFF_STATUS_UNMERGED
)
848 if (d
->dirty_submodule
)
849 *dirty_submodules
= 1;
850 if (d
->worktree_status
== DIFF_STATUS_DELETED
)
856 static void wt_longstatus_print_changed(struct wt_status
*s
)
858 int i
, dirty_submodules
;
859 int worktree_changes
= wt_status_check_worktree_changes(s
, &dirty_submodules
);
861 if (!worktree_changes
)
864 wt_longstatus_print_dirty_header(s
, worktree_changes
< 0, dirty_submodules
);
866 for (i
= 0; i
< s
->change
.nr
; i
++) {
867 struct wt_status_change_data
*d
;
868 struct string_list_item
*it
;
869 it
= &(s
->change
.items
[i
]);
871 if (!d
->worktree_status
||
872 d
->worktree_status
== DIFF_STATUS_UNMERGED
)
874 wt_longstatus_print_change_data(s
, WT_STATUS_CHANGED
, it
);
876 wt_longstatus_print_trailer(s
);
879 static int stash_count_refs(struct object_id
*ooid
, struct object_id
*noid
,
880 const char *email
, timestamp_t timestamp
, int tz
,
881 const char *message
, void *cb_data
)
888 static void wt_longstatus_print_stash_summary(struct wt_status
*s
)
892 for_each_reflog_ent("refs/stash", stash_count_refs
, &stash_count
);
894 status_printf_ln(s
, GIT_COLOR_NORMAL
,
895 Q_("Your stash currently has %d entry",
896 "Your stash currently has %d entries", stash_count
),
900 static void wt_longstatus_print_submodule_summary(struct wt_status
*s
, int uncommitted
)
902 struct child_process sm_summary
= CHILD_PROCESS_INIT
;
903 struct strbuf cmd_stdout
= STRBUF_INIT
;
904 struct strbuf summary
= STRBUF_INIT
;
905 char *summary_content
;
907 argv_array_pushf(&sm_summary
.env_array
, "GIT_INDEX_FILE=%s",
910 argv_array_push(&sm_summary
.args
, "submodule");
911 argv_array_push(&sm_summary
.args
, "summary");
912 argv_array_push(&sm_summary
.args
, uncommitted
? "--files" : "--cached");
913 argv_array_push(&sm_summary
.args
, "--for-status");
914 argv_array_push(&sm_summary
.args
, "--summary-limit");
915 argv_array_pushf(&sm_summary
.args
, "%d", s
->submodule_summary
);
917 argv_array_push(&sm_summary
.args
, s
->amend
? "HEAD^" : "HEAD");
919 sm_summary
.git_cmd
= 1;
920 sm_summary
.no_stdin
= 1;
922 capture_command(&sm_summary
, &cmd_stdout
, 1024);
924 /* prepend header, only if there's an actual output */
925 if (cmd_stdout
.len
) {
927 strbuf_addstr(&summary
, _("Submodules changed but not updated:"));
929 strbuf_addstr(&summary
, _("Submodule changes to be committed:"));
930 strbuf_addstr(&summary
, "\n\n");
932 strbuf_addbuf(&summary
, &cmd_stdout
);
933 strbuf_release(&cmd_stdout
);
935 if (s
->display_comment_prefix
) {
937 summary_content
= strbuf_detach(&summary
, &len
);
938 strbuf_add_commented_lines(&summary
, summary_content
, len
);
939 free(summary_content
);
942 fputs(summary
.buf
, s
->fp
);
943 strbuf_release(&summary
);
946 static void wt_longstatus_print_other(struct wt_status
*s
,
947 struct string_list
*l
,
952 struct strbuf buf
= STRBUF_INIT
;
953 static struct string_list output
= STRING_LIST_INIT_DUP
;
954 struct column_options copts
;
959 wt_longstatus_print_other_header(s
, what
, how
);
961 for (i
= 0; i
< l
->nr
; i
++) {
962 struct string_list_item
*it
;
965 path
= quote_path(it
->string
, s
->prefix
, &buf
);
966 if (column_active(s
->colopts
)) {
967 string_list_append(&output
, path
);
970 status_printf(s
, color(WT_STATUS_HEADER
, s
), "\t");
971 status_printf_more(s
, color(WT_STATUS_UNTRACKED
, s
),
975 strbuf_release(&buf
);
976 if (!column_active(s
->colopts
))
979 strbuf_addf(&buf
, "%s%s\t%s",
980 color(WT_STATUS_HEADER
, s
),
981 s
->display_comment_prefix
? "#" : "",
982 color(WT_STATUS_UNTRACKED
, s
));
983 memset(&copts
, 0, sizeof(copts
));
985 copts
.indent
= buf
.buf
;
986 if (want_color(s
->use_color
))
987 copts
.nl
= GIT_COLOR_RESET
"\n";
988 print_columns(&output
, s
->colopts
, &copts
);
989 string_list_clear(&output
, 0);
990 strbuf_release(&buf
);
992 status_printf_ln(s
, GIT_COLOR_NORMAL
, "%s", "");
995 size_t wt_status_locate_end(const char *s
, size_t len
)
998 struct strbuf pattern
= STRBUF_INIT
;
1000 strbuf_addf(&pattern
, "\n%c %s", comment_line_char
, cut_line
);
1001 if (starts_with(s
, pattern
.buf
+ 1))
1003 else if ((p
= strstr(s
, pattern
.buf
)))
1005 strbuf_release(&pattern
);
1009 void wt_status_add_cut_line(FILE *fp
)
1011 const char *explanation
= _("Do not modify or remove the line above.\nEverything below it will be ignored.");
1012 struct strbuf buf
= STRBUF_INIT
;
1014 fprintf(fp
, "%c %s", comment_line_char
, cut_line
);
1015 strbuf_add_commented_lines(&buf
, explanation
, strlen(explanation
));
1017 strbuf_release(&buf
);
1020 static void wt_longstatus_print_verbose(struct wt_status
*s
)
1022 struct rev_info rev
;
1023 struct setup_revision_opt opt
;
1024 int dirty_submodules
;
1025 const char *c
= color(WT_STATUS_HEADER
, s
);
1027 repo_init_revisions(s
->repo
, &rev
, NULL
);
1028 rev
.diffopt
.flags
.allow_textconv
= 1;
1029 rev
.diffopt
.ita_invisible_in_index
= 1;
1031 memset(&opt
, 0, sizeof(opt
));
1032 opt
.def
= s
->is_initial
? empty_tree_oid_hex() : s
->reference
;
1033 setup_revisions(0, NULL
, &rev
, &opt
);
1035 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1036 rev
.diffopt
.detect_rename
= s
->detect_rename
>= 0 ? s
->detect_rename
: rev
.diffopt
.detect_rename
;
1037 rev
.diffopt
.rename_limit
= s
->rename_limit
>= 0 ? s
->rename_limit
: rev
.diffopt
.rename_limit
;
1038 rev
.diffopt
.rename_score
= s
->rename_score
>= 0 ? s
->rename_score
: rev
.diffopt
.rename_score
;
1039 rev
.diffopt
.file
= s
->fp
;
1040 rev
.diffopt
.close_file
= 0;
1042 * If we're not going to stdout, then we definitely don't
1043 * want color, since we are going to the commit message
1044 * file (and even the "auto" setting won't work, since it
1045 * will have checked isatty on stdout). But we then do want
1046 * to insert the scissor line here to reliably remove the
1047 * diff before committing.
1049 if (s
->fp
!= stdout
) {
1050 rev
.diffopt
.use_color
= 0;
1051 wt_status_add_cut_line(s
->fp
);
1053 if (s
->verbose
> 1 && s
->committable
) {
1054 /* print_updated() printed a header, so do we */
1055 if (s
->fp
!= stdout
)
1056 wt_longstatus_print_trailer(s
);
1057 status_printf_ln(s
, c
, _("Changes to be committed:"));
1058 rev
.diffopt
.a_prefix
= "c/";
1059 rev
.diffopt
.b_prefix
= "i/";
1060 } /* else use prefix as per user config */
1061 run_diff_index(&rev
, 1);
1062 if (s
->verbose
> 1 &&
1063 wt_status_check_worktree_changes(s
, &dirty_submodules
)) {
1064 status_printf_ln(s
, c
,
1065 "--------------------------------------------------");
1066 status_printf_ln(s
, c
, _("Changes not staged for commit:"));
1068 rev
.diffopt
.a_prefix
= "i/";
1069 rev
.diffopt
.b_prefix
= "w/";
1070 run_diff_files(&rev
, 0);
1074 static void wt_longstatus_print_tracking(struct wt_status
*s
)
1076 struct strbuf sb
= STRBUF_INIT
;
1077 const char *cp
, *ep
, *branch_name
;
1078 struct branch
*branch
;
1079 char comment_line_string
[3];
1082 assert(s
->branch
&& !s
->is_initial
);
1083 if (!skip_prefix(s
->branch
, "refs/heads/", &branch_name
))
1085 branch
= branch_get(branch_name
);
1086 if (!format_tracking_info(branch
, &sb
, s
->ahead_behind_flags
))
1090 if (s
->display_comment_prefix
) {
1091 comment_line_string
[i
++] = comment_line_char
;
1092 comment_line_string
[i
++] = ' ';
1094 comment_line_string
[i
] = '\0';
1096 for (cp
= sb
.buf
; (ep
= strchr(cp
, '\n')) != NULL
; cp
= ep
+ 1)
1097 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
),
1098 "%s%.*s", comment_line_string
,
1099 (int)(ep
- cp
), cp
);
1100 if (s
->display_comment_prefix
)
1101 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
), "%c",
1105 strbuf_release(&sb
);
1108 static void show_merge_in_progress(struct wt_status
*s
,
1111 if (has_unmerged(s
)) {
1112 status_printf_ln(s
, color
, _("You have unmerged paths."));
1114 status_printf_ln(s
, color
,
1115 _(" (fix conflicts and run \"git commit\")"));
1116 status_printf_ln(s
, color
,
1117 _(" (use \"git merge --abort\" to abort the merge)"));
1120 status_printf_ln(s
, color
,
1121 _("All conflicts fixed but you are still merging."));
1123 status_printf_ln(s
, color
,
1124 _(" (use \"git commit\" to conclude merge)"));
1126 wt_longstatus_print_trailer(s
);
1129 static void show_am_in_progress(struct wt_status
*s
,
1132 status_printf_ln(s
, color
,
1133 _("You are in the middle of an am session."));
1134 if (s
->state
.am_empty_patch
)
1135 status_printf_ln(s
, color
,
1136 _("The current patch is empty."));
1138 if (!s
->state
.am_empty_patch
)
1139 status_printf_ln(s
, color
,
1140 _(" (fix conflicts and then run \"git am --continue\")"));
1141 status_printf_ln(s
, color
,
1142 _(" (use \"git am --skip\" to skip this patch)"));
1143 status_printf_ln(s
, color
,
1144 _(" (use \"git am --abort\" to restore the original branch)"));
1146 wt_longstatus_print_trailer(s
);
1149 static char *read_line_from_git_path(const char *filename
)
1151 struct strbuf buf
= STRBUF_INIT
;
1152 FILE *fp
= fopen_or_warn(git_path("%s", filename
), "r");
1155 strbuf_release(&buf
);
1158 strbuf_getline_lf(&buf
, fp
);
1160 return strbuf_detach(&buf
, NULL
);
1162 strbuf_release(&buf
);
1167 static int split_commit_in_progress(struct wt_status
*s
)
1169 int split_in_progress
= 0;
1170 char *head
, *orig_head
, *rebase_amend
, *rebase_orig_head
;
1172 if ((!s
->amend
&& !s
->nowarn
&& !s
->workdir_dirty
) ||
1173 !s
->branch
|| strcmp(s
->branch
, "HEAD"))
1176 head
= read_line_from_git_path("HEAD");
1177 orig_head
= read_line_from_git_path("ORIG_HEAD");
1178 rebase_amend
= read_line_from_git_path("rebase-merge/amend");
1179 rebase_orig_head
= read_line_from_git_path("rebase-merge/orig-head");
1181 if (!head
|| !orig_head
|| !rebase_amend
|| !rebase_orig_head
)
1182 ; /* fall through, no split in progress */
1183 else if (!strcmp(rebase_amend
, rebase_orig_head
))
1184 split_in_progress
= !!strcmp(head
, rebase_amend
);
1185 else if (strcmp(orig_head
, rebase_orig_head
))
1186 split_in_progress
= 1;
1191 free(rebase_orig_head
);
1193 return split_in_progress
;
1198 * "pick d6a2f0303e897ec257dd0e0a39a5ccb709bc2047 some message"
1200 * "pick d6a2f03 some message"
1202 * The function assumes that the line does not contain useless spaces
1203 * before or after the command.
1205 static void abbrev_sha1_in_line(struct strbuf
*line
)
1207 struct strbuf
**split
;
1210 if (starts_with(line
->buf
, "exec ") ||
1211 starts_with(line
->buf
, "x "))
1214 split
= strbuf_split_max(line
, ' ', 3);
1215 if (split
[0] && split
[1]) {
1216 struct object_id oid
;
1219 * strbuf_split_max left a space. Trim it and re-add
1220 * it after abbreviation.
1222 strbuf_trim(split
[1]);
1223 if (!get_oid(split
[1]->buf
, &oid
)) {
1224 strbuf_reset(split
[1]);
1225 strbuf_add_unique_abbrev(split
[1], &oid
,
1227 strbuf_addch(split
[1], ' ');
1229 for (i
= 0; split
[i
]; i
++)
1230 strbuf_addbuf(line
, split
[i
]);
1233 strbuf_list_free(split
);
1236 static int read_rebase_todolist(const char *fname
, struct string_list
*lines
)
1238 struct strbuf line
= STRBUF_INIT
;
1239 FILE *f
= fopen(git_path("%s", fname
), "r");
1242 if (errno
== ENOENT
)
1244 die_errno("Could not open file %s for reading",
1245 git_path("%s", fname
));
1247 while (!strbuf_getline_lf(&line
, f
)) {
1248 if (line
.len
&& line
.buf
[0] == comment_line_char
)
1253 abbrev_sha1_in_line(&line
);
1254 string_list_append(lines
, line
.buf
);
1257 strbuf_release(&line
);
1261 static void show_rebase_information(struct wt_status
*s
,
1264 if (s
->state
.rebase_interactive_in_progress
) {
1266 int nr_lines_to_show
= 2;
1268 struct string_list have_done
= STRING_LIST_INIT_DUP
;
1269 struct string_list yet_to_do
= STRING_LIST_INIT_DUP
;
1271 read_rebase_todolist("rebase-merge/done", &have_done
);
1272 if (read_rebase_todolist("rebase-merge/git-rebase-todo",
1274 status_printf_ln(s
, color
,
1275 _("git-rebase-todo is missing."));
1276 if (have_done
.nr
== 0)
1277 status_printf_ln(s
, color
, _("No commands done."));
1279 status_printf_ln(s
, color
,
1280 Q_("Last command done (%d command done):",
1281 "Last commands done (%d commands done):",
1284 for (i
= (have_done
.nr
> nr_lines_to_show
)
1285 ? have_done
.nr
- nr_lines_to_show
: 0;
1288 status_printf_ln(s
, color
, " %s", have_done
.items
[i
].string
);
1289 if (have_done
.nr
> nr_lines_to_show
&& s
->hints
)
1290 status_printf_ln(s
, color
,
1291 _(" (see more in file %s)"), git_path("rebase-merge/done"));
1294 if (yet_to_do
.nr
== 0)
1295 status_printf_ln(s
, color
,
1296 _("No commands remaining."));
1298 status_printf_ln(s
, color
,
1299 Q_("Next command to do (%d remaining command):",
1300 "Next commands to do (%d remaining commands):",
1303 for (i
= 0; i
< nr_lines_to_show
&& i
< yet_to_do
.nr
; i
++)
1304 status_printf_ln(s
, color
, " %s", yet_to_do
.items
[i
].string
);
1306 status_printf_ln(s
, color
,
1307 _(" (use \"git rebase --edit-todo\" to view and edit)"));
1309 string_list_clear(&yet_to_do
, 0);
1310 string_list_clear(&have_done
, 0);
1314 static void print_rebase_state(struct wt_status
*s
,
1317 if (s
->state
.branch
)
1318 status_printf_ln(s
, color
,
1319 _("You are currently rebasing branch '%s' on '%s'."),
1323 status_printf_ln(s
, color
,
1324 _("You are currently rebasing."));
1327 static void show_rebase_in_progress(struct wt_status
*s
,
1332 show_rebase_information(s
, color
);
1333 if (has_unmerged(s
)) {
1334 print_rebase_state(s
, color
);
1336 status_printf_ln(s
, color
,
1337 _(" (fix conflicts and then run \"git rebase --continue\")"));
1338 status_printf_ln(s
, color
,
1339 _(" (use \"git rebase --skip\" to skip this patch)"));
1340 status_printf_ln(s
, color
,
1341 _(" (use \"git rebase --abort\" to check out the original branch)"));
1343 } else if (s
->state
.rebase_in_progress
||
1344 !stat(git_path_merge_msg(s
->repo
), &st
)) {
1345 print_rebase_state(s
, color
);
1347 status_printf_ln(s
, color
,
1348 _(" (all conflicts fixed: run \"git rebase --continue\")"));
1349 } else if (split_commit_in_progress(s
)) {
1350 if (s
->state
.branch
)
1351 status_printf_ln(s
, color
,
1352 _("You are currently splitting a commit while rebasing branch '%s' on '%s'."),
1356 status_printf_ln(s
, color
,
1357 _("You are currently splitting a commit during a rebase."));
1359 status_printf_ln(s
, color
,
1360 _(" (Once your working directory is clean, run \"git rebase --continue\")"));
1362 if (s
->state
.branch
)
1363 status_printf_ln(s
, color
,
1364 _("You are currently editing a commit while rebasing branch '%s' on '%s'."),
1368 status_printf_ln(s
, color
,
1369 _("You are currently editing a commit during a rebase."));
1370 if (s
->hints
&& !s
->amend
) {
1371 status_printf_ln(s
, color
,
1372 _(" (use \"git commit --amend\" to amend the current commit)"));
1373 status_printf_ln(s
, color
,
1374 _(" (use \"git rebase --continue\" once you are satisfied with your changes)"));
1377 wt_longstatus_print_trailer(s
);
1380 static void show_cherry_pick_in_progress(struct wt_status
*s
,
1383 status_printf_ln(s
, color
, _("You are currently cherry-picking commit %s."),
1384 find_unique_abbrev(&s
->state
.cherry_pick_head_oid
, DEFAULT_ABBREV
));
1386 if (has_unmerged(s
))
1387 status_printf_ln(s
, color
,
1388 _(" (fix conflicts and run \"git cherry-pick --continue\")"));
1390 status_printf_ln(s
, color
,
1391 _(" (all conflicts fixed: run \"git cherry-pick --continue\")"));
1392 status_printf_ln(s
, color
,
1393 _(" (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"));
1395 wt_longstatus_print_trailer(s
);
1398 static void show_revert_in_progress(struct wt_status
*s
,
1401 status_printf_ln(s
, color
, _("You are currently reverting commit %s."),
1402 find_unique_abbrev(&s
->state
.revert_head_oid
, DEFAULT_ABBREV
));
1404 if (has_unmerged(s
))
1405 status_printf_ln(s
, color
,
1406 _(" (fix conflicts and run \"git revert --continue\")"));
1408 status_printf_ln(s
, color
,
1409 _(" (all conflicts fixed: run \"git revert --continue\")"));
1410 status_printf_ln(s
, color
,
1411 _(" (use \"git revert --abort\" to cancel the revert operation)"));
1413 wt_longstatus_print_trailer(s
);
1416 static void show_bisect_in_progress(struct wt_status
*s
,
1419 if (s
->state
.branch
)
1420 status_printf_ln(s
, color
,
1421 _("You are currently bisecting, started from branch '%s'."),
1424 status_printf_ln(s
, color
,
1425 _("You are currently bisecting."));
1427 status_printf_ln(s
, color
,
1428 _(" (use \"git bisect reset\" to get back to the original branch)"));
1429 wt_longstatus_print_trailer(s
);
1433 * Extract branch information from rebase/bisect
1435 static char *get_branch(const struct worktree
*wt
, const char *path
)
1437 struct strbuf sb
= STRBUF_INIT
;
1438 struct object_id oid
;
1439 const char *branch_name
;
1441 if (strbuf_read_file(&sb
, worktree_git_path(wt
, "%s", path
), 0) <= 0)
1444 while (sb
.len
&& sb
.buf
[sb
.len
- 1] == '\n')
1445 strbuf_setlen(&sb
, sb
.len
- 1);
1448 if (skip_prefix(sb
.buf
, "refs/heads/", &branch_name
))
1449 strbuf_remove(&sb
, 0, branch_name
- sb
.buf
);
1450 else if (starts_with(sb
.buf
, "refs/"))
1452 else if (!get_oid_hex(sb
.buf
, &oid
)) {
1454 strbuf_add_unique_abbrev(&sb
, &oid
, DEFAULT_ABBREV
);
1455 } else if (!strcmp(sb
.buf
, "detached HEAD")) /* rebase */
1459 return strbuf_detach(&sb
, NULL
);
1462 strbuf_release(&sb
);
1466 struct grab_1st_switch_cbdata
{
1468 struct object_id noid
;
1471 static int grab_1st_switch(struct object_id
*ooid
, struct object_id
*noid
,
1472 const char *email
, timestamp_t timestamp
, int tz
,
1473 const char *message
, void *cb_data
)
1475 struct grab_1st_switch_cbdata
*cb
= cb_data
;
1476 const char *target
= NULL
, *end
;
1478 if (!skip_prefix(message
, "checkout: moving from ", &message
))
1480 target
= strstr(message
, " to ");
1483 target
+= strlen(" to ");
1484 strbuf_reset(&cb
->buf
);
1485 oidcpy(&cb
->noid
, noid
);
1486 end
= strchrnul(target
, '\n');
1487 strbuf_add(&cb
->buf
, target
, end
- target
);
1488 if (!strcmp(cb
->buf
.buf
, "HEAD")) {
1489 /* HEAD is relative. Resolve it to the right reflog entry. */
1490 strbuf_reset(&cb
->buf
);
1491 strbuf_add_unique_abbrev(&cb
->buf
, noid
, DEFAULT_ABBREV
);
1496 static void wt_status_get_detached_from(struct repository
*r
,
1497 struct wt_status_state
*state
)
1499 struct grab_1st_switch_cbdata cb
;
1500 struct commit
*commit
;
1501 struct object_id oid
;
1504 strbuf_init(&cb
.buf
, 0);
1505 if (for_each_reflog_ent_reverse("HEAD", grab_1st_switch
, &cb
) <= 0) {
1506 strbuf_release(&cb
.buf
);
1510 if (dwim_ref(cb
.buf
.buf
, cb
.buf
.len
, &oid
, &ref
) == 1 &&
1511 /* sha1 is a commit? match without further lookup */
1512 (oideq(&cb
.noid
, &oid
) ||
1513 /* perhaps sha1 is a tag, try to dereference to a commit */
1514 ((commit
= lookup_commit_reference_gently(r
, &oid
, 1)) != NULL
&&
1515 oideq(&cb
.noid
, &commit
->object
.oid
)))) {
1516 const char *from
= ref
;
1517 if (!skip_prefix(from
, "refs/tags/", &from
))
1518 skip_prefix(from
, "refs/remotes/", &from
);
1519 state
->detached_from
= xstrdup(from
);
1521 state
->detached_from
=
1522 xstrdup(find_unique_abbrev(&cb
.noid
, DEFAULT_ABBREV
));
1523 oidcpy(&state
->detached_oid
, &cb
.noid
);
1524 state
->detached_at
= !get_oid("HEAD", &oid
) &&
1525 oideq(&oid
, &state
->detached_oid
);
1528 strbuf_release(&cb
.buf
);
1531 int wt_status_check_rebase(const struct worktree
*wt
,
1532 struct wt_status_state
*state
)
1536 if (!stat(worktree_git_path(wt
, "rebase-apply"), &st
)) {
1537 if (!stat(worktree_git_path(wt
, "rebase-apply/applying"), &st
)) {
1538 state
->am_in_progress
= 1;
1539 if (!stat(worktree_git_path(wt
, "rebase-apply/patch"), &st
) && !st
.st_size
)
1540 state
->am_empty_patch
= 1;
1542 state
->rebase_in_progress
= 1;
1543 state
->branch
= get_branch(wt
, "rebase-apply/head-name");
1544 state
->onto
= get_branch(wt
, "rebase-apply/onto");
1546 } else if (!stat(worktree_git_path(wt
, "rebase-merge"), &st
)) {
1547 if (!stat(worktree_git_path(wt
, "rebase-merge/interactive"), &st
))
1548 state
->rebase_interactive_in_progress
= 1;
1550 state
->rebase_in_progress
= 1;
1551 state
->branch
= get_branch(wt
, "rebase-merge/head-name");
1552 state
->onto
= get_branch(wt
, "rebase-merge/onto");
1558 int wt_status_check_bisect(const struct worktree
*wt
,
1559 struct wt_status_state
*state
)
1563 if (!stat(worktree_git_path(wt
, "BISECT_LOG"), &st
)) {
1564 state
->bisect_in_progress
= 1;
1565 state
->branch
= get_branch(wt
, "BISECT_START");
1571 void wt_status_get_state(struct repository
*r
,
1572 struct wt_status_state
*state
,
1573 int get_detached_from
)
1576 struct object_id oid
;
1578 if (!stat(git_path_merge_head(r
), &st
)) {
1579 wt_status_check_rebase(NULL
, state
);
1580 state
->merge_in_progress
= 1;
1581 } else if (wt_status_check_rebase(NULL
, state
)) {
1583 } else if (!stat(git_path_cherry_pick_head(r
), &st
) &&
1584 !get_oid("CHERRY_PICK_HEAD", &oid
)) {
1585 state
->cherry_pick_in_progress
= 1;
1586 oidcpy(&state
->cherry_pick_head_oid
, &oid
);
1588 wt_status_check_bisect(NULL
, state
);
1589 if (!stat(git_path_revert_head(r
), &st
) &&
1590 !get_oid("REVERT_HEAD", &oid
)) {
1591 state
->revert_in_progress
= 1;
1592 oidcpy(&state
->revert_head_oid
, &oid
);
1595 if (get_detached_from
)
1596 wt_status_get_detached_from(r
, state
);
1599 static void wt_longstatus_print_state(struct wt_status
*s
)
1601 const char *state_color
= color(WT_STATUS_HEADER
, s
);
1602 struct wt_status_state
*state
= &s
->state
;
1604 if (state
->merge_in_progress
) {
1605 if (state
->rebase_interactive_in_progress
) {
1606 show_rebase_information(s
, state_color
);
1609 show_merge_in_progress(s
, state_color
);
1610 } else if (state
->am_in_progress
)
1611 show_am_in_progress(s
, state_color
);
1612 else if (state
->rebase_in_progress
|| state
->rebase_interactive_in_progress
)
1613 show_rebase_in_progress(s
, state_color
);
1614 else if (state
->cherry_pick_in_progress
)
1615 show_cherry_pick_in_progress(s
, state_color
);
1616 else if (state
->revert_in_progress
)
1617 show_revert_in_progress(s
, state_color
);
1618 if (state
->bisect_in_progress
)
1619 show_bisect_in_progress(s
, state_color
);
1622 static void wt_longstatus_print(struct wt_status
*s
)
1624 const char *branch_color
= color(WT_STATUS_ONBRANCH
, s
);
1625 const char *branch_status_color
= color(WT_STATUS_HEADER
, s
);
1628 const char *on_what
= _("On branch ");
1629 const char *branch_name
= s
->branch
;
1630 if (!strcmp(branch_name
, "HEAD")) {
1631 branch_status_color
= color(WT_STATUS_NOBRANCH
, s
);
1632 if (s
->state
.rebase_in_progress
||
1633 s
->state
.rebase_interactive_in_progress
) {
1634 if (s
->state
.rebase_interactive_in_progress
)
1635 on_what
= _("interactive rebase in progress; onto ");
1637 on_what
= _("rebase in progress; onto ");
1638 branch_name
= s
->state
.onto
;
1639 } else if (s
->state
.detached_from
) {
1640 branch_name
= s
->state
.detached_from
;
1641 if (s
->state
.detached_at
)
1642 on_what
= _("HEAD detached at ");
1644 on_what
= _("HEAD detached from ");
1647 on_what
= _("Not currently on any branch.");
1650 skip_prefix(branch_name
, "refs/heads/", &branch_name
);
1651 status_printf(s
, color(WT_STATUS_HEADER
, s
), "%s", "");
1652 status_printf_more(s
, branch_status_color
, "%s", on_what
);
1653 status_printf_more(s
, branch_color
, "%s\n", branch_name
);
1655 wt_longstatus_print_tracking(s
);
1658 wt_longstatus_print_state(s
);
1660 if (s
->is_initial
) {
1661 status_printf_ln(s
, color(WT_STATUS_HEADER
, s
), "%s", "");
1662 status_printf_ln(s
, color(WT_STATUS_HEADER
, s
),
1664 ? _("Initial commit")
1665 : _("No commits yet"));
1666 status_printf_ln(s
, color(WT_STATUS_HEADER
, s
), "%s", "");
1669 wt_longstatus_print_updated(s
);
1670 wt_longstatus_print_unmerged(s
);
1671 wt_longstatus_print_changed(s
);
1672 if (s
->submodule_summary
&&
1673 (!s
->ignore_submodule_arg
||
1674 strcmp(s
->ignore_submodule_arg
, "all"))) {
1675 wt_longstatus_print_submodule_summary(s
, 0); /* staged */
1676 wt_longstatus_print_submodule_summary(s
, 1); /* unstaged */
1678 if (s
->show_untracked_files
) {
1679 wt_longstatus_print_other(s
, &s
->untracked
, _("Untracked files"), "add");
1680 if (s
->show_ignored_mode
)
1681 wt_longstatus_print_other(s
, &s
->ignored
, _("Ignored files"), "add -f");
1682 if (advice_status_u_option
&& 2000 < s
->untracked_in_ms
) {
1683 status_printf_ln(s
, GIT_COLOR_NORMAL
, "%s", "");
1684 status_printf_ln(s
, GIT_COLOR_NORMAL
,
1685 _("It took %.2f seconds to enumerate untracked files. 'status -uno'\n"
1686 "may speed it up, but you have to be careful not to forget to add\n"
1687 "new files yourself (see 'git help status')."),
1688 s
->untracked_in_ms
/ 1000.0);
1690 } else if (s
->committable
)
1691 status_printf_ln(s
, GIT_COLOR_NORMAL
, _("Untracked files not listed%s"),
1693 ? _(" (use -u option to show untracked files)") : "");
1696 wt_longstatus_print_verbose(s
);
1697 if (!s
->committable
) {
1699 status_printf_ln(s
, GIT_COLOR_NORMAL
, _("No changes"));
1702 else if (s
->workdir_dirty
) {
1704 printf(_("no changes added to commit "
1705 "(use \"git add\" and/or \"git commit -a\")\n"));
1707 printf(_("no changes added to commit\n"));
1708 } else if (s
->untracked
.nr
) {
1710 printf(_("nothing added to commit but untracked files "
1711 "present (use \"git add\" to track)\n"));
1713 printf(_("nothing added to commit but untracked files present\n"));
1714 } else if (s
->is_initial
) {
1716 printf(_("nothing to commit (create/copy files "
1717 "and use \"git add\" to track)\n"));
1719 printf(_("nothing to commit\n"));
1720 } else if (!s
->show_untracked_files
) {
1722 printf(_("nothing to commit (use -u to show untracked files)\n"));
1724 printf(_("nothing to commit\n"));
1726 printf(_("nothing to commit, working tree clean\n"));
1729 wt_longstatus_print_stash_summary(s
);
1732 static void wt_shortstatus_unmerged(struct string_list_item
*it
,
1733 struct wt_status
*s
)
1735 struct wt_status_change_data
*d
= it
->util
;
1736 const char *how
= "??";
1738 switch (d
->stagemask
) {
1739 case 1: how
= "DD"; break; /* both deleted */
1740 case 2: how
= "AU"; break; /* added by us */
1741 case 3: how
= "UD"; break; /* deleted by them */
1742 case 4: how
= "UA"; break; /* added by them */
1743 case 5: how
= "DU"; break; /* deleted by us */
1744 case 6: how
= "AA"; break; /* both added */
1745 case 7: how
= "UU"; break; /* both modified */
1747 color_fprintf(s
->fp
, color(WT_STATUS_UNMERGED
, s
), "%s", how
);
1748 if (s
->null_termination
) {
1749 fprintf(stdout
, " %s%c", it
->string
, 0);
1751 struct strbuf onebuf
= STRBUF_INIT
;
1753 one
= quote_path(it
->string
, s
->prefix
, &onebuf
);
1754 printf(" %s\n", one
);
1755 strbuf_release(&onebuf
);
1759 static void wt_shortstatus_status(struct string_list_item
*it
,
1760 struct wt_status
*s
)
1762 struct wt_status_change_data
*d
= it
->util
;
1764 if (d
->index_status
)
1765 color_fprintf(s
->fp
, color(WT_STATUS_UPDATED
, s
), "%c", d
->index_status
);
1768 if (d
->worktree_status
)
1769 color_fprintf(s
->fp
, color(WT_STATUS_CHANGED
, s
), "%c", d
->worktree_status
);
1773 if (s
->null_termination
) {
1774 fprintf(stdout
, "%s%c", it
->string
, 0);
1775 if (d
->rename_source
)
1776 fprintf(stdout
, "%s%c", d
->rename_source
, 0);
1778 struct strbuf onebuf
= STRBUF_INIT
;
1781 if (d
->rename_source
) {
1782 one
= quote_path(d
->rename_source
, s
->prefix
, &onebuf
);
1783 if (*one
!= '"' && strchr(one
, ' ') != NULL
) {
1785 strbuf_addch(&onebuf
, '"');
1788 printf("%s -> ", one
);
1789 strbuf_release(&onebuf
);
1791 one
= quote_path(it
->string
, s
->prefix
, &onebuf
);
1792 if (*one
!= '"' && strchr(one
, ' ') != NULL
) {
1794 strbuf_addch(&onebuf
, '"');
1797 printf("%s\n", one
);
1798 strbuf_release(&onebuf
);
1802 static void wt_shortstatus_other(struct string_list_item
*it
,
1803 struct wt_status
*s
, const char *sign
)
1805 if (s
->null_termination
) {
1806 fprintf(stdout
, "%s %s%c", sign
, it
->string
, 0);
1808 struct strbuf onebuf
= STRBUF_INIT
;
1810 one
= quote_path(it
->string
, s
->prefix
, &onebuf
);
1811 color_fprintf(s
->fp
, color(WT_STATUS_UNTRACKED
, s
), "%s", sign
);
1812 printf(" %s\n", one
);
1813 strbuf_release(&onebuf
);
1817 static void wt_shortstatus_print_tracking(struct wt_status
*s
)
1819 struct branch
*branch
;
1820 const char *header_color
= color(WT_STATUS_HEADER
, s
);
1821 const char *branch_color_local
= color(WT_STATUS_LOCAL_BRANCH
, s
);
1822 const char *branch_color_remote
= color(WT_STATUS_REMOTE_BRANCH
, s
);
1826 const char *branch_name
;
1827 int num_ours
, num_theirs
, sti
;
1828 int upstream_is_gone
= 0;
1830 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
, s
), "## ");
1834 branch_name
= s
->branch
;
1836 #define LABEL(string) (s->no_gettext ? (string) : _(string))
1839 color_fprintf(s
->fp
, header_color
, LABEL(N_("No commits yet on ")));
1841 if (!strcmp(s
->branch
, "HEAD")) {
1842 color_fprintf(s
->fp
, color(WT_STATUS_NOBRANCH
, s
), "%s",
1843 LABEL(N_("HEAD (no branch)")));
1847 skip_prefix(branch_name
, "refs/heads/", &branch_name
);
1849 branch
= branch_get(branch_name
);
1851 color_fprintf(s
->fp
, branch_color_local
, "%s", branch_name
);
1853 sti
= stat_tracking_info(branch
, &num_ours
, &num_theirs
, &base
,
1854 s
->ahead_behind_flags
);
1859 upstream_is_gone
= 1;
1862 short_base
= shorten_unambiguous_ref(base
, 0);
1863 color_fprintf(s
->fp
, header_color
, "...");
1864 color_fprintf(s
->fp
, branch_color_remote
, "%s", short_base
);
1867 if (!upstream_is_gone
&& !sti
)
1870 color_fprintf(s
->fp
, header_color
, " [");
1871 if (upstream_is_gone
) {
1872 color_fprintf(s
->fp
, header_color
, LABEL(N_("gone")));
1873 } else if (s
->ahead_behind_flags
== AHEAD_BEHIND_QUICK
) {
1874 color_fprintf(s
->fp
, header_color
, LABEL(N_("different")));
1875 } else if (!num_ours
) {
1876 color_fprintf(s
->fp
, header_color
, LABEL(N_("behind ")));
1877 color_fprintf(s
->fp
, branch_color_remote
, "%d", num_theirs
);
1878 } else if (!num_theirs
) {
1879 color_fprintf(s
->fp
, header_color
, LABEL(N_("ahead ")));
1880 color_fprintf(s
->fp
, branch_color_local
, "%d", num_ours
);
1882 color_fprintf(s
->fp
, header_color
, LABEL(N_("ahead ")));
1883 color_fprintf(s
->fp
, branch_color_local
, "%d", num_ours
);
1884 color_fprintf(s
->fp
, header_color
, ", %s", LABEL(N_("behind ")));
1885 color_fprintf(s
->fp
, branch_color_remote
, "%d", num_theirs
);
1888 color_fprintf(s
->fp
, header_color
, "]");
1890 fputc(s
->null_termination
? '\0' : '\n', s
->fp
);
1893 static void wt_shortstatus_print(struct wt_status
*s
)
1895 struct string_list_item
*it
;
1898 wt_shortstatus_print_tracking(s
);
1900 for_each_string_list_item(it
, &s
->change
) {
1901 struct wt_status_change_data
*d
= it
->util
;
1904 wt_shortstatus_unmerged(it
, s
);
1906 wt_shortstatus_status(it
, s
);
1908 for_each_string_list_item(it
, &s
->untracked
)
1909 wt_shortstatus_other(it
, s
, "??");
1911 for_each_string_list_item(it
, &s
->ignored
)
1912 wt_shortstatus_other(it
, s
, "!!");
1915 static void wt_porcelain_print(struct wt_status
*s
)
1918 s
->relative_paths
= 0;
1921 wt_shortstatus_print(s
);
1925 * Print branch information for porcelain v2 output. These lines
1926 * are printed when the '--branch' parameter is given.
1928 * # branch.oid <commit><eol>
1929 * # branch.head <head><eol>
1930 * [# branch.upstream <upstream><eol>
1931 * [# branch.ab +<ahead> -<behind><eol>]]
1933 * <commit> ::= the current commit hash or the the literal
1934 * "(initial)" to indicate an initialized repo
1937 * <head> ::= <branch_name> the current branch name or
1938 * "(detached)" literal when detached head or
1939 * "(unknown)" when something is wrong.
1941 * <upstream> ::= the upstream branch name, when set.
1943 * <ahead> ::= integer ahead value or '?'.
1945 * <behind> ::= integer behind value or '?'.
1947 * The end-of-line is defined by the -z flag.
1949 * <eol> ::= NUL when -z,
1952 * When an upstream is set and present, the 'branch.ab' line will
1953 * be printed with the ahead/behind counts for the branch and the
1954 * upstream. When AHEAD_BEHIND_QUICK is requested and the branches
1955 * are different, '?' will be substituted for the actual count.
1957 static void wt_porcelain_v2_print_tracking(struct wt_status
*s
)
1959 struct branch
*branch
;
1961 const char *branch_name
;
1962 int ab_info
, nr_ahead
, nr_behind
;
1963 char eol
= s
->null_termination
? '\0' : '\n';
1965 fprintf(s
->fp
, "# branch.oid %s%c",
1966 (s
->is_initial
? "(initial)" : sha1_to_hex(s
->sha1_commit
)),
1970 fprintf(s
->fp
, "# branch.head %s%c", "(unknown)", eol
);
1972 if (!strcmp(s
->branch
, "HEAD")) {
1973 fprintf(s
->fp
, "# branch.head %s%c", "(detached)", eol
);
1975 if (s
->state
.rebase_in_progress
||
1976 s
->state
.rebase_interactive_in_progress
)
1977 branch_name
= s
->state
.onto
;
1978 else if (s
->state
.detached_from
)
1979 branch_name
= s
->state
.detached_from
;
1984 skip_prefix(s
->branch
, "refs/heads/", &branch_name
);
1986 fprintf(s
->fp
, "# branch.head %s%c", branch_name
, eol
);
1989 /* Lookup stats on the upstream tracking branch, if set. */
1990 branch
= branch_get(branch_name
);
1992 ab_info
= stat_tracking_info(branch
, &nr_ahead
, &nr_behind
,
1993 &base
, s
->ahead_behind_flags
);
1995 base
= shorten_unambiguous_ref(base
, 0);
1996 fprintf(s
->fp
, "# branch.upstream %s%c", base
, eol
);
2001 if (nr_ahead
|| nr_behind
)
2002 fprintf(s
->fp
, "# branch.ab +%d -%d%c",
2003 nr_ahead
, nr_behind
, eol
);
2005 fprintf(s
->fp
, "# branch.ab +? -?%c",
2007 } else if (!ab_info
) {
2009 fprintf(s
->fp
, "# branch.ab +0 -0%c", eol
);
2016 * Convert various submodule status values into a
2017 * fixed-length string of characters in the buffer provided.
2019 static void wt_porcelain_v2_submodule_state(
2020 struct wt_status_change_data
*d
,
2023 if (S_ISGITLINK(d
->mode_head
) ||
2024 S_ISGITLINK(d
->mode_index
) ||
2025 S_ISGITLINK(d
->mode_worktree
)) {
2027 sub
[1] = d
->new_submodule_commits
? 'C' : '.';
2028 sub
[2] = (d
->dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
) ? 'M' : '.';
2029 sub
[3] = (d
->dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
) ? 'U' : '.';
2040 * Fix-up changed entries before we print them.
2042 static void wt_porcelain_v2_fix_up_changed(
2043 struct string_list_item
*it
,
2044 struct wt_status
*s
)
2046 struct wt_status_change_data
*d
= it
->util
;
2048 if (!d
->index_status
) {
2050 * This entry is unchanged in the index (relative to the head).
2051 * Therefore, the collect_updated_cb was never called for this
2052 * entry (during the head-vs-index scan) and so the head column
2053 * fields were never set.
2055 * We must have data for the index column (from the
2056 * index-vs-worktree scan (otherwise, this entry should not be
2057 * in the list of changes)).
2059 * Copy index column fields to the head column, so that our
2060 * output looks complete.
2062 assert(d
->mode_head
== 0);
2063 d
->mode_head
= d
->mode_index
;
2064 oidcpy(&d
->oid_head
, &d
->oid_index
);
2067 if (!d
->worktree_status
) {
2069 * This entry is unchanged in the worktree (relative to the index).
2070 * Therefore, the collect_changed_cb was never called for this entry
2071 * (during the index-vs-worktree scan) and so the worktree column
2072 * fields were never set.
2074 * We must have data for the index column (from the head-vs-index
2077 * Copy the index column fields to the worktree column so that
2078 * our output looks complete.
2080 * Note that we only have a mode field in the worktree column
2081 * because the scan code tries really hard to not have to compute it.
2083 assert(d
->mode_worktree
== 0);
2084 d
->mode_worktree
= d
->mode_index
;
2089 * Print porcelain v2 info for tracked entries with changes.
2091 static void wt_porcelain_v2_print_changed_entry(
2092 struct string_list_item
*it
,
2093 struct wt_status
*s
)
2095 struct wt_status_change_data
*d
= it
->util
;
2096 struct strbuf buf
= STRBUF_INIT
;
2097 struct strbuf buf_from
= STRBUF_INIT
;
2098 const char *path
= NULL
;
2099 const char *path_from
= NULL
;
2101 char submodule_token
[5];
2102 char sep_char
, eol_char
;
2104 wt_porcelain_v2_fix_up_changed(it
, s
);
2105 wt_porcelain_v2_submodule_state(d
, submodule_token
);
2107 key
[0] = d
->index_status
? d
->index_status
: '.';
2108 key
[1] = d
->worktree_status
? d
->worktree_status
: '.';
2111 if (s
->null_termination
) {
2113 * In -z mode, we DO NOT C-quote pathnames. Current path is ALWAYS first.
2114 * A single NUL character separates them.
2119 path_from
= d
->rename_source
;
2122 * Path(s) are C-quoted if necessary. Current path is ALWAYS first.
2123 * The source path is only present when necessary.
2124 * A single TAB separates them (because paths can contain spaces
2125 * which are not escaped and C-quoting does escape TAB characters).
2129 path
= quote_path(it
->string
, s
->prefix
, &buf
);
2130 if (d
->rename_source
)
2131 path_from
= quote_path(d
->rename_source
, s
->prefix
, &buf_from
);
2135 fprintf(s
->fp
, "2 %s %s %06o %06o %06o %s %s %c%d %s%c%s%c",
2136 key
, submodule_token
,
2137 d
->mode_head
, d
->mode_index
, d
->mode_worktree
,
2138 oid_to_hex(&d
->oid_head
), oid_to_hex(&d
->oid_index
),
2139 d
->rename_status
, d
->rename_score
,
2140 path
, sep_char
, path_from
, eol_char
);
2142 fprintf(s
->fp
, "1 %s %s %06o %06o %06o %s %s %s%c",
2143 key
, submodule_token
,
2144 d
->mode_head
, d
->mode_index
, d
->mode_worktree
,
2145 oid_to_hex(&d
->oid_head
), oid_to_hex(&d
->oid_index
),
2148 strbuf_release(&buf
);
2149 strbuf_release(&buf_from
);
2153 * Print porcelain v2 status info for unmerged entries.
2155 static void wt_porcelain_v2_print_unmerged_entry(
2156 struct string_list_item
*it
,
2157 struct wt_status
*s
)
2159 struct wt_status_change_data
*d
= it
->util
;
2160 struct index_state
*istate
= s
->repo
->index
;
2161 const struct cache_entry
*ce
;
2162 struct strbuf buf_index
= STRBUF_INIT
;
2163 const char *path_index
= NULL
;
2164 int pos
, stage
, sum
;
2167 struct object_id oid
;
2170 char submodule_token
[5];
2171 char unmerged_prefix
= 'u';
2172 char eol_char
= s
->null_termination
? '\0' : '\n';
2174 wt_porcelain_v2_submodule_state(d
, submodule_token
);
2176 switch (d
->stagemask
) {
2177 case 1: key
= "DD"; break; /* both deleted */
2178 case 2: key
= "AU"; break; /* added by us */
2179 case 3: key
= "UD"; break; /* deleted by them */
2180 case 4: key
= "UA"; break; /* added by them */
2181 case 5: key
= "DU"; break; /* deleted by us */
2182 case 6: key
= "AA"; break; /* both added */
2183 case 7: key
= "UU"; break; /* both modified */
2185 BUG("unhandled unmerged status %x", d
->stagemask
);
2189 * Disregard d.aux.porcelain_v2 data that we accumulated
2190 * for the head and index columns during the scans and
2191 * replace with the actual stage data.
2193 * Note that this is a last-one-wins for each the individual
2194 * stage [123] columns in the event of multiple cache entries
2197 memset(stages
, 0, sizeof(stages
));
2199 pos
= index_name_pos(istate
, it
->string
, strlen(it
->string
));
2202 while (pos
< istate
->cache_nr
) {
2203 ce
= istate
->cache
[pos
++];
2204 stage
= ce_stage(ce
);
2205 if (strcmp(ce
->name
, it
->string
) || !stage
)
2207 stages
[stage
- 1].mode
= ce
->ce_mode
;
2208 oidcpy(&stages
[stage
- 1].oid
, &ce
->oid
);
2209 sum
|= (1 << (stage
- 1));
2211 if (sum
!= d
->stagemask
)
2212 BUG("observed stagemask 0x%x != expected stagemask 0x%x", sum
, d
->stagemask
);
2214 if (s
->null_termination
)
2215 path_index
= it
->string
;
2217 path_index
= quote_path(it
->string
, s
->prefix
, &buf_index
);
2219 fprintf(s
->fp
, "%c %s %s %06o %06o %06o %06o %s %s %s %s%c",
2220 unmerged_prefix
, key
, submodule_token
,
2221 stages
[0].mode
, /* stage 1 */
2222 stages
[1].mode
, /* stage 2 */
2223 stages
[2].mode
, /* stage 3 */
2225 oid_to_hex(&stages
[0].oid
), /* stage 1 */
2226 oid_to_hex(&stages
[1].oid
), /* stage 2 */
2227 oid_to_hex(&stages
[2].oid
), /* stage 3 */
2231 strbuf_release(&buf_index
);
2235 * Print porcelain V2 status info for untracked and ignored entries.
2237 static void wt_porcelain_v2_print_other(
2238 struct string_list_item
*it
,
2239 struct wt_status
*s
,
2242 struct strbuf buf
= STRBUF_INIT
;
2246 if (s
->null_termination
) {
2250 path
= quote_path(it
->string
, s
->prefix
, &buf
);
2254 fprintf(s
->fp
, "%c %s%c", prefix
, path
, eol_char
);
2256 strbuf_release(&buf
);
2260 * Print porcelain V2 status.
2263 * [<v2_changed_items>]*
2264 * [<v2_unmerged_items>]*
2265 * [<v2_untracked_items>]*
2266 * [<v2_ignored_items>]*
2269 static void wt_porcelain_v2_print(struct wt_status
*s
)
2271 struct wt_status_change_data
*d
;
2272 struct string_list_item
*it
;
2276 wt_porcelain_v2_print_tracking(s
);
2278 for (i
= 0; i
< s
->change
.nr
; i
++) {
2279 it
= &(s
->change
.items
[i
]);
2282 wt_porcelain_v2_print_changed_entry(it
, s
);
2285 for (i
= 0; i
< s
->change
.nr
; i
++) {
2286 it
= &(s
->change
.items
[i
]);
2289 wt_porcelain_v2_print_unmerged_entry(it
, s
);
2292 for (i
= 0; i
< s
->untracked
.nr
; i
++) {
2293 it
= &(s
->untracked
.items
[i
]);
2294 wt_porcelain_v2_print_other(it
, s
, '?');
2297 for (i
= 0; i
< s
->ignored
.nr
; i
++) {
2298 it
= &(s
->ignored
.items
[i
]);
2299 wt_porcelain_v2_print_other(it
, s
, '!');
2303 void wt_status_print(struct wt_status
*s
)
2305 trace2_data_intmax("status", s
->repo
, "count/changed", s
->change
.nr
);
2306 trace2_data_intmax("status", s
->repo
, "count/untracked",
2308 trace2_data_intmax("status", s
->repo
, "count/ignored", s
->ignored
.nr
);
2310 trace2_region_enter("status", "print", s
->repo
);
2312 switch (s
->status_format
) {
2313 case STATUS_FORMAT_SHORT
:
2314 wt_shortstatus_print(s
);
2316 case STATUS_FORMAT_PORCELAIN
:
2317 wt_porcelain_print(s
);
2319 case STATUS_FORMAT_PORCELAIN_V2
:
2320 wt_porcelain_v2_print(s
);
2322 case STATUS_FORMAT_UNSPECIFIED
:
2323 BUG("finalize_deferred_config() should have been called");
2325 case STATUS_FORMAT_NONE
:
2326 case STATUS_FORMAT_LONG
:
2327 wt_longstatus_print(s
);
2331 trace2_region_leave("status", "print", s
->repo
);
2335 * Returns 1 if there are unstaged changes, 0 otherwise.
2337 int has_unstaged_changes(struct repository
*r
, int ignore_submodules
)
2339 struct rev_info rev_info
;
2342 repo_init_revisions(r
, &rev_info
, NULL
);
2343 if (ignore_submodules
) {
2344 rev_info
.diffopt
.flags
.ignore_submodules
= 1;
2345 rev_info
.diffopt
.flags
.override_submodule_config
= 1;
2347 rev_info
.diffopt
.flags
.quick
= 1;
2348 diff_setup_done(&rev_info
.diffopt
);
2349 result
= run_diff_files(&rev_info
, 0);
2350 return diff_result_code(&rev_info
.diffopt
, result
);
2354 * Returns 1 if there are uncommitted changes, 0 otherwise.
2356 int has_uncommitted_changes(struct repository
*r
,
2357 int ignore_submodules
)
2359 struct rev_info rev_info
;
2362 if (is_index_unborn(r
->index
))
2365 repo_init_revisions(r
, &rev_info
, NULL
);
2366 if (ignore_submodules
)
2367 rev_info
.diffopt
.flags
.ignore_submodules
= 1;
2368 rev_info
.diffopt
.flags
.quick
= 1;
2370 add_head_to_pending(&rev_info
);
2371 if (!rev_info
.pending
.nr
) {
2373 * We have no head (or it's corrupt); use the empty tree,
2374 * which will complain if the index is non-empty.
2376 struct tree
*tree
= lookup_tree(r
, the_hash_algo
->empty_tree
);
2377 add_pending_object(&rev_info
, &tree
->object
, "");
2380 diff_setup_done(&rev_info
.diffopt
);
2381 result
= run_diff_index(&rev_info
, 1);
2382 return diff_result_code(&rev_info
.diffopt
, result
);
2386 * If the work tree has unstaged or uncommitted changes, dies with the
2387 * appropriate message.
2389 int require_clean_work_tree(struct repository
*r
,
2392 int ignore_submodules
,
2395 struct lock_file lock_file
= LOCK_INIT
;
2398 fd
= repo_hold_locked_index(r
, &lock_file
, 0);
2399 refresh_index(r
->index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
2401 repo_update_index_if_able(r
, &lock_file
);
2402 rollback_lock_file(&lock_file
);
2404 if (has_unstaged_changes(r
, ignore_submodules
)) {
2405 /* TRANSLATORS: the action is e.g. "pull with rebase" */
2406 error(_("cannot %s: You have unstaged changes."), _(action
));
2410 if (has_uncommitted_changes(r
, ignore_submodules
)) {
2412 error(_("additionally, your index contains uncommitted changes."));
2414 error(_("cannot %s: Your index contains uncommitted changes."),