mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
migrate push tests
This commit is contained in:
parent
6b8abb7887
commit
bfde06d049
339 changed files with 381 additions and 752 deletions
|
@ -140,6 +140,10 @@ func (self *Shell) CreateLightweightTag(name string, ref string) *Shell {
|
|||
return self.RunCommand(fmt.Sprintf("git tag %s %s", name, ref))
|
||||
}
|
||||
|
||||
func (self *Shell) CreateAnnotatedTag(name string, message string, ref string) *Shell {
|
||||
return self.RunCommand(fmt.Sprintf("git tag -a %s -m \"%s\" %s", name, message, ref))
|
||||
}
|
||||
|
||||
// convenience method for creating a file and adding it
|
||||
func (self *Shell) CreateFileAndAdd(fileName string, fileContents string) *Shell {
|
||||
return self.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue