Enum Mappings #320

Merged
netnose merged 2 commits from enum-mappings into master 2016-08-27 12:27:11 -05:00
2 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import (
type BranchType uint type BranchType uint
const ( const (
BranchAll BranchType = C.GIT_BRANCH_ALL
BranchLocal BranchType = C.GIT_BRANCH_LOCAL BranchLocal BranchType = C.GIT_BRANCH_LOCAL
BranchRemote BranchType = C.GIT_BRANCH_REMOTE BranchRemote BranchType = C.GIT_BRANCH_REMOTE
) )

View File

@ -25,6 +25,7 @@ const (
StatusWtTypeChange Status = C.GIT_STATUS_WT_TYPECHANGE StatusWtTypeChange Status = C.GIT_STATUS_WT_TYPECHANGE
StatusWtRenamed Status = C.GIT_STATUS_WT_RENAMED StatusWtRenamed Status = C.GIT_STATUS_WT_RENAMED
StatusIgnored Status = C.GIT_STATUS_IGNORED StatusIgnored Status = C.GIT_STATUS_IGNORED
StatusConflicted Status = C.GIT_STATUS_CONFLICTED
) )
type StatusEntry struct { type StatusEntry struct {