Reputation: 33
I want to create a folder hierarchy in a GIT repository on Azure Devops using the REST API. (automated via a script)
The docs https://learn.microsoft.com/en-us/rest/api/azure/devops/git/pushes/create?view=azure-devops-rest-6.1 provide only examples how you can create files, but not folders.
Does anyone know how to do that?
Upvotes: 3
Views: 8199
Reputation: 11
This thread might help you out with your problem:
How do I create a folder in a GitHub repository?
Basicly use / in the file name field to create folder(s), e.g. typing folder1/file1 in the file name field will create a folder folder1 and a file file1.
Upvotes: 1
Reputation: 114641
You can't. Git tracks files in a tree structure. If there is no file (leaf), there is no folder (tree-branch).
So you'll need to add at least one file to the empty folder.
Hence the way to create a folder with the REST API, is to create a file with a new folder as its root.
Upvotes: 3