Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 466df4d

Browse files
committed
Reversed prune and tag options
1 parent e8f50c5 commit 466df4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/Git/Tasks/GitFetchTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class GitFetchTask : ProcessTask<string>
1010
private readonly string arguments;
1111

1212
public GitFetchTask(string remote,
13-
CancellationToken token, bool tags = false, bool prune = false, IOutputProcessor<string> processor = null)
13+
CancellationToken token, bool prune = false, bool tags = false, IOutputProcessor<string> processor = null)
1414
: base(token, processor ?? new SimpleOutputProcessor())
1515
{
1616
Name = TaskName;

0 commit comments

Comments
 (0)