Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
func DefaultInit ¶
func GetShortGitStatus ¶
GetShortGitStatus read the git status of the repository located at the path
Types ¶
type FileGit ¶
FileGit is an entry name with git status the name will not end with file separator
func (*FileGit) Set ¶ added in v0.10.0
Set sets the status of the file based on the XY string X Y Meaning -------------------------------------------------
[AMD] not updated
M [ MTD] updated in index T [ MTD] type changed in index A [ MTD] added to index D deleted from index R [ MTD] renamed in index C [ MTD] copied in index [MTARC] index and work tree matches [ MTARC] M work tree changed since index [ MTARC] T type changed in work tree since index [ MTARC] D deleted in work tree
// R renamed in work tree // C copied in work tree
------------------------------------------------- D D unmerged, both deleted A U unmerged, added by us U D unmerged, deleted by them U A unmerged, added by them D U unmerged, deleted by us A A unmerged, both added U U unmerged, both modified ------------------------------------------------- ? ? untracked ! ! ignored -------------------------------------------------
type FileGits ¶
type FileGits = []FileGit
func ParseShort ¶
ParseShort parses a git status output command It is compatible with the short version of the git status command modified from https://le-gall.bzh/post/go/parsing-git-status-with-go/ author: Sébastien Le Gall
type RepoPath ¶ added in v0.9.0
type RepoPath = string
func GetTopLevel ¶ added in v0.9.0
GetTopLevel returns the top level of the repoPath the returned path is cleaned by pathbeautify.CleanSeparator