diff options
| author | Ben Straub <bs@github.com> | 2013-09-25 14:46:59 -0700 |
|---|---|---|
| committer | Ben Straub <bs@github.com> | 2013-09-25 14:46:59 -0700 |
| commit | f7db1b6f26837b44a5cb8956c23bbbdff28ba4f7 (patch) | |
| tree | f8ce50c00e781960ca00529a93e81704d650a711 /include/git2 | |
| parent | 49781a03f0ea2d33b465010c5533b6026cbc1141 (diff) | |
| download | libgit2-f7db1b6f26837b44a5cb8956c23bbbdff28ba4f7.tar.gz | |
Trim API, document which parts aren't done
Diffstat (limited to 'include/git2')
| -rw-r--r-- | include/git2/blame.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/git2/blame.h b/include/git2/blame.h index 652bc8180..ba3580fcf 100644 --- a/include/git2/blame.h +++ b/include/git2/blame.h @@ -26,18 +26,20 @@ GIT_BEGIN_DECL typedef enum { /** Normal blame, the default */ GIT_BLAME_NORMAL = 0, - /** Track lines that have moved within a file (like `git blame -M`) */ + /** Track lines that have moved within a file (like `git blame -M`). + * NOT IMPLEMENTED. */ GIT_BLAME_TRACK_COPIES_SAME_FILE = (1<<0), - /** Track lines that have moved across files in the same commit (like `git blame -C`) */ + /** Track lines that have moved across files in the same commit (like `git blame -C`). + * NOT IMPLEMENTED. */ GIT_BLAME_TRACK_COPIES_SAME_COMMIT_MOVES = (1<<1), /** Track lines that have been copied from another file that exists in the - * same commit (like `git blame -CC`) */ + * same commit (like `git blame -CC`). + * NOT IMPLEMENTED. */ GIT_BLAME_TRACK_COPIES_SAME_COMMIT_COPIES = (1<<1 | 1<<2), /** Track lines that have been copied from another file that exists in *any* - * commit (like `git blame -CCC`) */ + * commit (like `git blame -CCC`). + * NOT IMPLEMENTED. */ GIT_BLAME_TRACK_COPIES_ANY_COMMIT_COPIES = (1<<1 | 1<<2 | 1<<3), - /** Track through file renames */ - GIT_BLAME_TRACK_FILE_RENAMES = (1<<4), } git_blame_flag_t; /** |
