Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update git-database.md #2247

Merged
merged 1 commit into from
Oct 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/git-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ var tag = new NewTag {
Date = DateTime.UtcNow
}
};
var result = await client.Git.Tags.Create("octokit", "octokit.net", tag);
var result = await client.Git.Tag.Create("octokit", "octokit.net", tag);
Console.WriteLine("Created a tag for {0} at {1}", result.Tag, result.Sha);
```

Or you can fetch an existing tag from the API:

```csharp
var tag = await client.Git.Tags.Get("octokit", "octokit.net", "v1.0.0");
var tag = await client.Git.Tag.Get("octokit", "octokit.net", "v1.0.0");
```