mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 03:12:21 +08:00
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
namespace SourceGit.Commands
|
|
{
|
|
public class Push : Command
|
|
{
|
|
public Push(string repo, string local, string remote, string remoteBranch, bool withTags, bool checkSubmodules, bool track, bool force)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
SSHKey = new Config(repo).Get($"remote.{remote}.sshkey");
|
|
Args = "push --progress --verbose ";
|
|
|
|
if (withTags)
|
|
Args += "--tags ";
|
|
if (checkSubmodules)
|
|
Args += "--recurse-submodules=check ";
|
|
if (track)
|
|
Args += "-u ";
|
|
if (force)
|
|
Args += "--force-with-lease ";
|
|
|
|
Args += $"{remote} {local}:{remoteBranch}";
|
|
}
|
|
|
|
public Push(string repo, string remote, string refname, bool isDelete)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
SSHKey = new Config(repo).Get($"remote.{remote}.sshkey");
|
|
Args = "push ";
|
|
|
|
if (isDelete)
|
|
Args += "--delete ";
|
|
|
|
Args += $"{remote} {refname}";
|
|
}
|
|
}
|
|
}
|