We are using Azure Repository via WebBrowser. We have TEST branch:
TEST
Folder1
|- folder0001
|- folder0002
FolderA
|- folderAAAA
|- folderBBBB
and we would like always to ignore Folder1 when we pull to master and keep it like this:
MASTER
FolderA
|- folderAAAA
|- folderBBBB
Is there any option to achieve this and igonre Folder1?
Currently there's no built-in feature to ignore the files from DevOps Pull Request.
Entries in a
.gitignoreorexcludefile have no effect on files thatGit already tracks. Even you add ignore/exclude, the file will still be listed in Pull request.You can vote on the user voice ticket to raise its priority, which will engage the product manager to consider the feature.