1. Packages
  2. Azure DevOps Provider
  3. API Docs
  4. GitRepositoryFile
Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi

azuredevops.GitRepositoryFile

Explore with Pulumi AI

Manage files within an Azure DevOps Git repository.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";

const example = new azuredevops.Project("example", {
    name: "Example Project",
    visibility: "private",
    versionControl: "Git",
    workItemTemplate: "Agile",
});
const exampleGit = new azuredevops.Git("example", {
    projectId: example.id,
    name: "Example Git Repository",
    initialization: {
        initType: "Clean",
    },
});
const exampleGitRepositoryFile = new azuredevops.GitRepositoryFile("example", {
    repositoryId: exampleGit.id,
    file: ".gitignore",
    content: "**/*.tfstate",
    branch: "refs/heads/master",
    commitMessage: "First commit",
    overwriteOnCreate: false,
});
Copy
import pulumi
import pulumi_azuredevops as azuredevops

example = azuredevops.Project("example",
    name="Example Project",
    visibility="private",
    version_control="Git",
    work_item_template="Agile")
example_git = azuredevops.Git("example",
    project_id=example.id,
    name="Example Git Repository",
    initialization={
        "init_type": "Clean",
    })
example_git_repository_file = azuredevops.GitRepositoryFile("example",
    repository_id=example_git.id,
    file=".gitignore",
    content="**/*.tfstate",
    branch="refs/heads/master",
    commit_message="First commit",
    overwrite_on_create=False)
Copy
package main

import (
	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := azuredevops.NewProject(ctx, "example", &azuredevops.ProjectArgs{
			Name:             pulumi.String("Example Project"),
			Visibility:       pulumi.String("private"),
			VersionControl:   pulumi.String("Git"),
			WorkItemTemplate: pulumi.String("Agile"),
		})
		if err != nil {
			return err
		}
		exampleGit, err := azuredevops.NewGit(ctx, "example", &azuredevops.GitArgs{
			ProjectId: example.ID(),
			Name:      pulumi.String("Example Git Repository"),
			Initialization: &azuredevops.GitInitializationArgs{
				InitType: pulumi.String("Clean"),
			},
		})
		if err != nil {
			return err
		}
		_, err = azuredevops.NewGitRepositoryFile(ctx, "example", &azuredevops.GitRepositoryFileArgs{
			RepositoryId:      exampleGit.ID(),
			File:              pulumi.String(".gitignore"),
			Content:           pulumi.String("**/*.tfstate"),
			Branch:            pulumi.String("refs/heads/master"),
			CommitMessage:     pulumi.String("First commit"),
			OverwriteOnCreate: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;

return await Deployment.RunAsync(() => 
{
    var example = new AzureDevOps.Project("example", new()
    {
        Name = "Example Project",
        Visibility = "private",
        VersionControl = "Git",
        WorkItemTemplate = "Agile",
    });

    var exampleGit = new AzureDevOps.Git("example", new()
    {
        ProjectId = example.Id,
        Name = "Example Git Repository",
        Initialization = new AzureDevOps.Inputs.GitInitializationArgs
        {
            InitType = "Clean",
        },
    });

    var exampleGitRepositoryFile = new AzureDevOps.GitRepositoryFile("example", new()
    {
        RepositoryId = exampleGit.Id,
        File = ".gitignore",
        Content = "**/*.tfstate",
        Branch = "refs/heads/master",
        CommitMessage = "First commit",
        OverwriteOnCreate = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.Project;
import com.pulumi.azuredevops.ProjectArgs;
import com.pulumi.azuredevops.Git;
import com.pulumi.azuredevops.GitArgs;
import com.pulumi.azuredevops.inputs.GitInitializationArgs;
import com.pulumi.azuredevops.GitRepositoryFile;
import com.pulumi.azuredevops.GitRepositoryFileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Project("example", ProjectArgs.builder()
            .name("Example Project")
            .visibility("private")
            .versionControl("Git")
            .workItemTemplate("Agile")
            .build());

        var exampleGit = new Git("exampleGit", GitArgs.builder()
            .projectId(example.id())
            .name("Example Git Repository")
            .initialization(GitInitializationArgs.builder()
                .initType("Clean")
                .build())
            .build());

        var exampleGitRepositoryFile = new GitRepositoryFile("exampleGitRepositoryFile", GitRepositoryFileArgs.builder()
            .repositoryId(exampleGit.id())
            .file(".gitignore")
            .content("**/*.tfstate")
            .branch("refs/heads/master")
            .commitMessage("First commit")
            .overwriteOnCreate(false)
            .build());

    }
}
Copy
resources:
  example:
    type: azuredevops:Project
    properties:
      name: Example Project
      visibility: private
      versionControl: Git
      workItemTemplate: Agile
  exampleGit:
    type: azuredevops:Git
    name: example
    properties:
      projectId: ${example.id}
      name: Example Git Repository
      initialization:
        initType: Clean
  exampleGitRepositoryFile:
    type: azuredevops:GitRepositoryFile
    name: example
    properties:
      repositoryId: ${exampleGit.id}
      file: .gitignore
      content: '**/*.tfstate'
      branch: refs/heads/master
      commitMessage: First commit
      overwriteOnCreate: false
Copy

Create GitRepositoryFile Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new GitRepositoryFile(name: string, args: GitRepositoryFileArgs, opts?: CustomResourceOptions);
@overload
def GitRepositoryFile(resource_name: str,
                      args: GitRepositoryFileArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def GitRepositoryFile(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      content: Optional[str] = None,
                      file: Optional[str] = None,
                      repository_id: Optional[str] = None,
                      branch: Optional[str] = None,
                      commit_message: Optional[str] = None,
                      overwrite_on_create: Optional[bool] = None)
func NewGitRepositoryFile(ctx *Context, name string, args GitRepositoryFileArgs, opts ...ResourceOption) (*GitRepositoryFile, error)
public GitRepositoryFile(string name, GitRepositoryFileArgs args, CustomResourceOptions? opts = null)
public GitRepositoryFile(String name, GitRepositoryFileArgs args)
public GitRepositoryFile(String name, GitRepositoryFileArgs args, CustomResourceOptions options)
type: azuredevops:GitRepositoryFile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GitRepositoryFileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GitRepositoryFileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GitRepositoryFileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GitRepositoryFileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GitRepositoryFileArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var gitRepositoryFileResource = new AzureDevOps.GitRepositoryFile("gitRepositoryFileResource", new()
{
    Content = "string",
    File = "string",
    RepositoryId = "string",
    Branch = "string",
    CommitMessage = "string",
    OverwriteOnCreate = false,
});
Copy
example, err := azuredevops.NewGitRepositoryFile(ctx, "gitRepositoryFileResource", &azuredevops.GitRepositoryFileArgs{
	Content:           pulumi.String("string"),
	File:              pulumi.String("string"),
	RepositoryId:      pulumi.String("string"),
	Branch:            pulumi.String("string"),
	CommitMessage:     pulumi.String("string"),
	OverwriteOnCreate: pulumi.Bool(false),
})
Copy
var gitRepositoryFileResource = new GitRepositoryFile("gitRepositoryFileResource", GitRepositoryFileArgs.builder()
    .content("string")
    .file("string")
    .repositoryId("string")
    .branch("string")
    .commitMessage("string")
    .overwriteOnCreate(false)
    .build());
Copy
git_repository_file_resource = azuredevops.GitRepositoryFile("gitRepositoryFileResource",
    content="string",
    file="string",
    repository_id="string",
    branch="string",
    commit_message="string",
    overwrite_on_create=False)
Copy
const gitRepositoryFileResource = new azuredevops.GitRepositoryFile("gitRepositoryFileResource", {
    content: "string",
    file: "string",
    repositoryId: "string",
    branch: "string",
    commitMessage: "string",
    overwriteOnCreate: false,
});
Copy
type: azuredevops:GitRepositoryFile
properties:
    branch: string
    commitMessage: string
    content: string
    file: string
    overwriteOnCreate: false
    repositoryId: string
Copy

GitRepositoryFile Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The GitRepositoryFile resource accepts the following input properties:

Content This property is required. string
The file content.
File
This property is required.
Changes to this property will trigger replacement.
string
The path of the file to manage.
RepositoryId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Git repository.
Branch Changes to this property will trigger replacement. string
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
CommitMessage string
Commit message when adding or updating the managed file.
OverwriteOnCreate bool
Enable overwriting existing files (defaults to false).
Content This property is required. string
The file content.
File
This property is required.
Changes to this property will trigger replacement.
string
The path of the file to manage.
RepositoryId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Git repository.
Branch Changes to this property will trigger replacement. string
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
CommitMessage string
Commit message when adding or updating the managed file.
OverwriteOnCreate bool
Enable overwriting existing files (defaults to false).
content This property is required. String
The file content.
file
This property is required.
Changes to this property will trigger replacement.
String
The path of the file to manage.
repositoryId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Git repository.
branch Changes to this property will trigger replacement. String
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commitMessage String
Commit message when adding or updating the managed file.
overwriteOnCreate Boolean
Enable overwriting existing files (defaults to false).
content This property is required. string
The file content.
file
This property is required.
Changes to this property will trigger replacement.
string
The path of the file to manage.
repositoryId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Git repository.
branch Changes to this property will trigger replacement. string
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commitMessage string
Commit message when adding or updating the managed file.
overwriteOnCreate boolean
Enable overwriting existing files (defaults to false).
content This property is required. str
The file content.
file
This property is required.
Changes to this property will trigger replacement.
str
The path of the file to manage.
repository_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Git repository.
branch Changes to this property will trigger replacement. str
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commit_message str
Commit message when adding or updating the managed file.
overwrite_on_create bool
Enable overwriting existing files (defaults to false).
content This property is required. String
The file content.
file
This property is required.
Changes to this property will trigger replacement.
String
The path of the file to manage.
repositoryId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Git repository.
branch Changes to this property will trigger replacement. String
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commitMessage String
Commit message when adding or updating the managed file.
overwriteOnCreate Boolean
Enable overwriting existing files (defaults to false).

Outputs

All input properties are implicitly available as output properties. Additionally, the GitRepositoryFile resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing GitRepositoryFile Resource

Get an existing GitRepositoryFile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: GitRepositoryFileState, opts?: CustomResourceOptions): GitRepositoryFile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        branch: Optional[str] = None,
        commit_message: Optional[str] = None,
        content: Optional[str] = None,
        file: Optional[str] = None,
        overwrite_on_create: Optional[bool] = None,
        repository_id: Optional[str] = None) -> GitRepositoryFile
func GetGitRepositoryFile(ctx *Context, name string, id IDInput, state *GitRepositoryFileState, opts ...ResourceOption) (*GitRepositoryFile, error)
public static GitRepositoryFile Get(string name, Input<string> id, GitRepositoryFileState? state, CustomResourceOptions? opts = null)
public static GitRepositoryFile get(String name, Output<String> id, GitRepositoryFileState state, CustomResourceOptions options)
resources:  _:    type: azuredevops:GitRepositoryFile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Branch Changes to this property will trigger replacement. string
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
CommitMessage string
Commit message when adding or updating the managed file.
Content string
The file content.
File Changes to this property will trigger replacement. string
The path of the file to manage.
OverwriteOnCreate bool
Enable overwriting existing files (defaults to false).
RepositoryId Changes to this property will trigger replacement. string
The ID of the Git repository.
Branch Changes to this property will trigger replacement. string
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
CommitMessage string
Commit message when adding or updating the managed file.
Content string
The file content.
File Changes to this property will trigger replacement. string
The path of the file to manage.
OverwriteOnCreate bool
Enable overwriting existing files (defaults to false).
RepositoryId Changes to this property will trigger replacement. string
The ID of the Git repository.
branch Changes to this property will trigger replacement. String
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commitMessage String
Commit message when adding or updating the managed file.
content String
The file content.
file Changes to this property will trigger replacement. String
The path of the file to manage.
overwriteOnCreate Boolean
Enable overwriting existing files (defaults to false).
repositoryId Changes to this property will trigger replacement. String
The ID of the Git repository.
branch Changes to this property will trigger replacement. string
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commitMessage string
Commit message when adding or updating the managed file.
content string
The file content.
file Changes to this property will trigger replacement. string
The path of the file to manage.
overwriteOnCreate boolean
Enable overwriting existing files (defaults to false).
repositoryId Changes to this property will trigger replacement. string
The ID of the Git repository.
branch Changes to this property will trigger replacement. str
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commit_message str
Commit message when adding or updating the managed file.
content str
The file content.
file Changes to this property will trigger replacement. str
The path of the file to manage.
overwrite_on_create bool
Enable overwriting existing files (defaults to false).
repository_id Changes to this property will trigger replacement. str
The ID of the Git repository.
branch Changes to this property will trigger replacement. String
Git branch (defaults to refs/heads/master). The branch must already exist, it will not be created if it does not already exist.
commitMessage String
Commit message when adding or updating the managed file.
content String
The file content.
file Changes to this property will trigger replacement. String
The path of the file to manage.
overwriteOnCreate Boolean
Enable overwriting existing files (defaults to false).
repositoryId Changes to this property will trigger replacement. String
The ID of the Git repository.

Import

Repository files can be imported using a combination of the repository ID and file, e.g.

$ pulumi import azuredevops:index/gitRepositoryFile:GitRepositoryFile example 00000000-0000-0000-0000-000000000000/.gitignore
Copy

To import a file from a branch other than master, append : and the branch name, e.g.

$ pulumi import azuredevops:index/gitRepositoryFile:GitRepositoryFile example 00000000-0000-0000-0000-000000000000/.gitignore:refs/heads/master
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure DevOps pulumi/pulumi-azuredevops
License
Apache-2.0
Notes
This Pulumi package is based on the azuredevops Terraform Provider.