in src/main/java/com/spotify/github/v3/clients/GitDataClient.java [162:169]
public CompletableFuture<Reference> createReference(final String ref, final String sha) {
final String path = format(CREATE_REFERENCE_URI, owner, repo);
final ImmutableMap<String, String> body =
of(
"ref", ref,
"sha", sha);
return github.post(path, github.json().toJsonUnchecked(body), Reference.class);
}