mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
1dd7307fde
more and more move rebase commit refreshing into existing abstraction and more and more WIP and more handling clicks properly fix merge conflicts update cheatsheet lots more preparation to start moving things into controllers WIP better typing expand on remotes controller moving more code into controllers
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
package git_commands
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type RemoteCommands struct {
|
|
*GitCommon
|
|
}
|
|
|
|
func NewRemoteCommands(gitCommon *GitCommon) *RemoteCommands {
|
|
return &RemoteCommands{
|
|
GitCommon: gitCommon,
|
|
}
|
|
}
|
|
|
|
func (self *RemoteCommands) AddRemote(name string, url string) error {
|
|
return self.cmd.
|
|
New(fmt.Sprintf("git remote add %s %s", self.cmd.Quote(name), self.cmd.Quote(url))).
|
|
Run()
|
|
}
|
|
|
|
func (self *RemoteCommands) RemoveRemote(name string) error {
|
|
return self.cmd.
|
|
New(fmt.Sprintf("git remote remove %s", self.cmd.Quote(name))).
|
|
Run()
|
|
}
|
|
|
|
func (self *RemoteCommands) RenameRemote(oldRemoteName string, newRemoteName string) error {
|
|
return self.cmd.
|
|
New(fmt.Sprintf("git remote rename %s %s", self.cmd.Quote(oldRemoteName), self.cmd.Quote(newRemoteName))).
|
|
Run()
|
|
}
|
|
|
|
func (self *RemoteCommands) UpdateRemoteUrl(remoteName string, updatedUrl string) error {
|
|
return self.cmd.
|
|
New(fmt.Sprintf("git remote set-url %s %s", self.cmd.Quote(remoteName), self.cmd.Quote(updatedUrl))).
|
|
Run()
|
|
}
|
|
|
|
func (self *RemoteCommands) DeleteRemoteBranch(remoteName string, branchName string) error {
|
|
command := fmt.Sprintf("git push %s --delete %s", self.cmd.Quote(remoteName), self.cmd.Quote(branchName))
|
|
return self.cmd.New(command).PromptOnCredentialRequest().WithMutex(self.syncMutex).Run()
|
|
}
|
|
|
|
// CheckRemoteBranchExists Returns remote branch
|
|
func (self *RemoteCommands) CheckRemoteBranchExists(branchName string) bool {
|
|
_, err := self.cmd.
|
|
New(
|
|
fmt.Sprintf("git show-ref --verify -- refs/remotes/origin/%s",
|
|
self.cmd.Quote(branchName),
|
|
),
|
|
).
|
|
DontLog().
|
|
RunWithOutput()
|
|
|
|
return err == nil
|
|
}
|