enum

Git2::GitDeltaT

Inherits Enum < Comparable < Value < Object

Constants

GIT_DELTA_UNMODIFIED = 0
GIT_DELTA_ADDED = 1
GIT_DELTA_DELETED = 2
GIT_DELTA_MODIFIED = 3
GIT_DELTA_RENAMED = 4
GIT_DELTA_COPIED = 5
GIT_DELTA_IGNORED = 6
GIT_DELTA_UNTRACKED = 7
GIT_DELTA_TYPECHANGE = 8
GIT_DELTA_UNREADABLE = 9
GIT_DELTA_CONFLICTED = 10

Instance methods

git_delta_added?

Returns true if this enum value equals GIT_DELTA_ADDED

Source
git_delta_conflicted?

Returns true if this enum value equals GIT_DELTA_CONFLICTED

Source
git_delta_copied?

Returns true if this enum value equals GIT_DELTA_COPIED

Source
git_delta_deleted?

Returns true if this enum value equals GIT_DELTA_DELETED

Source
git_delta_ignored?

Returns true if this enum value equals GIT_DELTA_IGNORED

Source
git_delta_modified?

Returns true if this enum value equals GIT_DELTA_MODIFIED

Source
git_delta_renamed?

Returns true if this enum value equals GIT_DELTA_RENAMED

Source
git_delta_typechange?

Returns true if this enum value equals GIT_DELTA_TYPECHANGE

Source
git_delta_unmodified?

Returns true if this enum value equals GIT_DELTA_UNMODIFIED

Source
git_delta_unreadable?

Returns true if this enum value equals GIT_DELTA_UNREADABLE

Source
git_delta_untracked?

Returns true if this enum value equals GIT_DELTA_UNTRACKED

Source