projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Start to implement a built-in version of `git add --interactive`
[git]
/
add-interactive.c
1
#include "cache.h"
2
#include "add-interactive.h"
3
4
int run_add_i(struct repository *r, const struct pathspec *ps)
5
{
6
die(_("No commands are available in the built-in `git add -i` yet!"));
7
}