-
Notifications
You must be signed in to change notification settings - Fork 140
Add more regression tests around fetching/cloning from UNC paths #143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
On Windows, it is quite common to work with network drives. The format of the paths to network drives (or "network shares", or UNC paths) is: \\<server>\<share>\... We already have a couple regression tests revolving around those types of paths, but we missed cloning and fetching from UNC paths without leading `file://` (and with backslashes instead of forward slashes). This lil' patch closes that gap. It gets a bit silly to add the commands to the name of the test script, so let's just rename it while we're testing more UNC stuff. Signed-off-by: Johannes Schindelin <[email protected]>
3136739
to
f55e749
Compare
/submit |
Submitted as [email protected] |
This branch is now known as |
This patch series was integrated into pu via git@a445a7b. |
This patch series was integrated into pu via git@00546a4. |
This patch series was integrated into pu via git@596f97d. |
This patch series was integrated into pu via git@8ef4769. |
This patch series was integrated into next via git@a4ca01e. |
This patch series was integrated into pu via git@fc25a19. |
This patch series was integrated into next via git@fc25a19. |
This patch series was integrated into master via git@fc25a19. |
Closed via fc25a19. |
On Windows, we want to make sure that we can fetch and clone from network drives. Let's add regression tests to make sure about that.