mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
switch to fork of go-git
This commit is contained in:
11
vendor/github.com/jesseduffield/go-git/v5/plumbing/revision.go
generated
vendored
Normal file
11
vendor/github.com/jesseduffield/go-git/v5/plumbing/revision.go
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
package plumbing
|
||||
|
||||
// Revision represents a git revision
|
||||
// to get more details about git revisions
|
||||
// please check git manual page :
|
||||
// https://www.kernel.org/pub/software/scm/git/docs/gitrevisions.html
|
||||
type Revision string
|
||||
|
||||
func (r Revision) String() string {
|
||||
return string(r)
|
||||
}
|
Reference in New Issue
Block a user