title | titleSuffix | description | ms.assetid | ms.service | ms.topic | ms.date | monikerRange | ms.subservice |
---|---|---|---|---|---|---|---|---|
Cross-Platform Compatibility |
Azure Repos |
How Git interacts with multiple platform filesystems |
7e02f9e9-ebb1-4d7a-aeb2-37445a6cf8c7 |
azure-devops-repos |
conceptual |
08/14/2020 |
<= azure-devops |
azure-devops-repos-git |
[!INCLUDE version-lt-eq-azure-devops]
The Windows, macOS, and Linux file systems each have limitations and behaviors that are not always supported by one or more of the other platforms. Since Git is a cross-platform technology, it is possible for a developer on one platform to make a commit containing files or folders that have incompatible names with another platform's file system. Protecting your repo from this is important because developers on other platforms may unknowingly checkout a commit that corrupts their working directory due to unsupported file or paths names.
Azure Repos offers three cross-platform compatibility settings that help protect your repo from people pushing commits that are incompatible with one or more platforms. The three file system limitations these settings are related to are:
- Case Sensitivity
- Restricted File and Folder Names
- Path Length Restrictions
The Windows and macOS file systems are case-insensitive (but case-preserving) by default. Most Linux filesystems are case-sensitive. Git was built originally to be the Linux kernel's version control system, so unsurprisingly, it's case-sensitive.
While many of the issues with a case-insensitive OS have been addressed in Git for Windows, a few quirks remain.
On Linux, checking out a Git repo which contains both "File.txt" and "file.txt" is no problem. Those are distinct filenames. On Windows and macOS, checking out both files will result in the second one overwriting the first one. If two folders differ only by case, their contents will end up mixed together on case-insensitive filesystems.
One way to fix a repository with this problem is to check it out in a case-sensitive environment.
Rename files and folders so they no longer conflict, then push those changes to the repository.
Windows Subsystem for Linux is one such environment.
Another approach is to use the command git mv -f <conflicting name> <non-conflicting name>
for each conflict, being careful to use exact capitalization on both file names.
It's good to avoid creating this situation in the first place. Azure Repos offers a case-enforcement setting to prevent pushes which would lead to this situation. For developers, adopting the habit of using tab-completion to commit files will also help. Since both Windows and macOS are case-preserving, this will ensure that Git's internals see the exact same casing that the filesystem uses.
You can create two branches or tags (known as 'refs') that differ only in casing.
Git's internals, as well as Azure DevOps Services/TFS, will treat them as two separate refs.
On a user's machine, Git uses the filesystem to store refs.
Fetches and other operations begin to fail because of the ambiguity.
Each ref is represented by a small file, and if a ref name contains /
characters, the parts before the final /
are represented by folders.
One simple way to avoid issues is to always use all-lowercase branch and tag names. If you have already created two branches or tags with this problem, you can fix it in the Azure Repos web UI.
From the branches page, navigate to the related commit. In the context menu, choose "New branch". Give the branch a new name that doesn't have a case conflict. Return to the branches page and delete the conflicting branch.
The steps for fixing a tag name are similar to branches. From the tags page, navigate to the tagged commit. In the context menu, choose "Create tag". Give the tag a new name that doesn't have a case conflict. Return to the tags page and delete the conflicting tag.
The Windows, macOS, and Linux operating systems each have various naming limitations and max path limits. These restrict what you can name files or folders. This can create problem situations for teams using Git across multiple platforms.
For example, let's say a developer on one platform commits a change to the shared repository that contains a file name or path length that is invalid on another platform. Later, another developer attempts to checkout that commit on a platform where the contents are invalid. This results in a corrupted working directory creating the potential to damage your repo with corrupted data.
::: moniker range="azure-devops"
Azure Repos offers file name and max path repository settings that block pushes containing commits that violate one or more of the below limitations.
::: moniker-end
Restrictions / Platforms | Windows | macOS | Linux |
---|---|---|---|
File Name Restrictions | Reserved File Names: CON, PRN, AUX, NUL, COM1 - COM9, LPT1 - LPT9 Reserved File Names followed by . Reserved Characters: \ / : * ? " < > Filenames ending in . or whitespace |
Filenames ending in / |
Filenames ending in / |
Path Length Restrictions | Paths in Windows have a maximum length of 260 characters (incl. a null terminator). For directories with .NET the fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. |
File names are limited to 255 characters Path max in HFS+ are documented as unlimited, though some macOS versions cap it at 1016 characters. Some file systems support 1016 as max path |
File names are limited to 255 characters Path max is 4096 |
::: moniker range=">=azure-devops-2019"
::: moniker-end
::: moniker range="azure-devops-2019"
Note
The encoding support described in this section is supported in Azure DevOps Server 2019.1 and higher.
::: moniker-end
::: moniker range=">=azure-devops-2019"
Microsoft has added support for UTF-16 and UTF-32 encoding via the web pushes endpoint. This means that we will preserve the encoding type so you don't have to rewrite your files as UTF-8. You will also see a warning when you try to save a file that is not UTF encoded via the web (which only supports UTF encoding).
The following screenshot shows an example of the dialog that you see when you introduce encoding changes by a web push.
:::image type="content" source="media/os-compatibility/web-push-encoding-dialog.png" alt-text="{Screenshot that shows the dialog when you introduce encoding changes by a web push.}":::
::: moniker-end