sourcegit/src/Commands/Remote.cs

42 lines
907 B
C#
Raw Normal View History

namespace SourceGit.Commands
{
public class Remote : Command
{
public Remote(string repo)
{
WorkingDirectory = repo;
Context = repo;
2021-04-29 05:05:55 -07:00
}
public bool Add(string name, string url)
{
2021-04-29 05:05:55 -07:00
Args = $"remote add {name} {url}";
return Exec();
}
public bool Delete(string name)
{
2021-04-29 05:05:55 -07:00
Args = $"remote remove {name}";
return Exec();
}
public bool Rename(string name, string to)
{
2021-04-29 05:05:55 -07:00
Args = $"remote rename {name} {to}";
return Exec();
}
public bool Prune(string name)
{
Args = $"remote prune {name}";
return Exec();
}
public bool SetURL(string name, string url)
{
2021-04-29 05:05:55 -07:00
Args = $"remote set-url {name} {url}";
return Exec();
}
}
}