Documentation
¶
Overview ¶
Package diff implements the pr diff command
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DiffFile ¶ added in v0.5.0
type DiffFile struct {
Path string `json:"path"`
OldPath string `json:"old_path,omitempty"`
Added int `json:"added"`
Removed int `json:"removed"`
NewFile bool `json:"new_file,omitempty"`
Deleted bool `json:"deleted,omitempty"`
Renamed bool `json:"renamed,omitempty"`
}
DiffFile represents a file in the diff
type DiffOptions ¶
type DiffResult ¶ added in v0.5.0
type DiffResult struct {
Number int `json:"number"`
Title string `json:"title"`
HeadBranch string `json:"head_branch"`
BaseBranch string `json:"base_branch"`
AddedLines int `json:"added_lines"`
RemovedLines int `json:"removed_lines"`
FileCount int `json:"file_count"`
Files []DiffFile `json:"files"`
}
DiffResult represents the JSON output for pr diff
Source Files
¶
- diff.go
Click to show internal directories.
Click to hide internal directories.