-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Create symlinks when cloning repos with symlinks #117
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
Comments
This is expected behavior when |
Unless I'm missing a step, symlinks just aren't created when cloning the test repo: |
You made sure to run |
@elyscape: Yes, forgot to include that in the repro steps. Updated the screenshot. |
And you're running Git Bash elevated? |
Try going into the repository and running these commands:
|
The
|
I guess that answers our question: Git for Windows does not presently support symlinks at all. @dscho: Could you reopen this issue? Or should someone make another for the symlink implementation? |
Looks like this is the source of the failure. |
Unfortunately, we had to drop the NTFS reparse point-based symlink emulation support when updating to 2.1.0: be148fa (see msysgit#231 for details). |
Surely the issue should stay open then? |
@dandv please note that while I reopened this ticket as per your request, it is in dear need of developers getting behind it, though. |
Thanks. Perhaps getting attention from StackOverflow users would help. Some have posted some pretty in-depth workarounds and may be interesting in helping. |
Sorry, I fear that StackOverflow users are not necessarily in the best position to take that topic branch introducing symlink support and making it more robust... We really need real developers with a real incentive to work on this. |
Just to give a complete picture, this is configurable by the way of assigning |
@elieux good point. Maybe it would be a good idea to create a page on our wiki: https://github.com/git-for-windows/git/wiki (maybe "symlinks"?). That way, @dandv could add information vetted from StackOverflow and from GitHub comments. |
Weirdly, if your account is part of the Administrators group, you can only create symlinks from an elevated process, even if you also have |
The most weird part is if we use Guest account, we can create symlink without any permission. |
As a side note, MSYS2 includes native symlink creation with the
|
That's an awfully broad statement, given that the same does not hold true here.
Please note that MSys2's
The lines below the linked line handle a couple of interesting, but hardly common, filesystems first: NFS (not NTFS!), MVFS, and AFS. Only then does it try to handle NTFS reparse points. I was already referring to them in my comment above. NTFS reparse points are similar in concept to Unix-style symlinks, but differ in a couple of quite crucial ways:
In particular, something that is quite common on Unix is not possible with reparse points: ln -s /tmp/blub ~/blob
echo Hello, world. > ~/blob So you see, the semantics of symlinks and NTFS reparse points are actually quite different when you get to the technical details; And it is the same technical details that actually matter not only in our attempt to emulate symlinks via NTFS reparse points, but even more so they matter in the context of the common operations on symlinks that projects containing symlinks expect to perform. |
You mean when the Administrators group has this privilege? That's expected behaviour, because UAC essentially does its thing by stripping the Administrators group SID from tokens of un-elevated processes. So if your account has this privilege only by the virtue of being in the Administrators group, only elevated processes get it. |
@dscho, are we talking about the same thing? It's true that NTFS symlinks are implemented using reparse points, but they're ostensibly not the same thing, so if a source makes statements about reparse points, it doesn't necessarily mean that the same applies for NTFS symlinks. Specific points below.
Although this is true of the Cygwin
|
To be clear, the issue of having to specify the type of the symlink (and inconsistencies with how |
No, I mean that, if you're in the Adminstrators group but you also have granted |
You're right. That's a horrible feature then (and the permission thing is back on the list of reasons NTFS symlinks can't reasonably be used for git). Ref: http://stackoverflow.com/questions/15320550/secreatesymboliclinkprivilege-ignored-on-windows-8 |
I'm not sure there's a good solution to this when you consider that it's possible to have symlinks in a repository that point outside of the repository or to locations that don't exist and thus don't have a known type. |
More precisely: symlinks by default cannot span remote file systems
|
... and with English locale
|
Closing as WONTFIX would discourage volunteers from even trying.
In six years of using GitHub I've never seen any other symlink type than the regular one, pointing within the repository. A good solution is better than a perfect solution. From an end-user's perspective, without knowledge of NTFS internals, if I can run |
So, where do we take this issue? Is there a volunteer who needs this feature badly enough to address the issues raised in msysgit#231? Or do we need to close this ticket as "WONTFIX"? Hi Dscho, Given your longer comment, would the right closure be something like "WONTFIX-NEEDSVOLUNTEER", to help readers understand that they could help. This could be contrasted with those that are at the other extreme "WONTFIX-CONTRARYTOPOLICY" which would advise readers to help elsewhere. Just a thought. Philip |
Why can't we just leave this issue open? |
@dandv Experience shows that "just leaving this issue open" will solve exactly nothing. So what I need is a volunteer with the need to see this addressed, with enough of the need to dive into it and to work on it. Are you that volunteer? |
Just saw the close. Is this fixed? If so, leaving the issue open has helped :-P |
Please don't flatter yourself here: @kblees has done all the work. He deserves all of the credit, too. |
@dscho: never have I insinuated that I deserve any credit; I don't care for credit. I'm an ordinary end-user who just wants symlinks on Windows, and your insisting on closing an unfixed issue perplexed me. This wasn't a "WONTFIX"; it was a "HELP WANTED". Why would anyone want to close it?
You might want to adjust your priors based on this new experience of leaving an issue open and seeing another dev step in with a fix (thanks @kblees!). Would he have jumped in if the issue was closed? Who knows. But I have not seen any rational argument for closing this issue, while leaving it open did correlate with it receiving a fix. You may choose to learn from this or not. I have made my case and will no longer engage. I would, however, like to thank you for all your contributions to Git for Windows. Best regards, |
@dandv well, as I am revisiting this issue I am left with a little bad taste in my mouth. You could at least have contributed a wiki page describing the intricacies of symlink support on Windows. And let me clarify one thing for you: with Open Source, nobody is an ordinary end-user, because nobody paid for the software. You certainly did not. The downside of getting things for free is that you are expected to do your share to improve the software. You may help others with their problems, you may write documentation about more obscure functions (as -- you guessed it -- symbolic links), you may pay somebody to improve the code. What really, really does not help is to sit back and wait for others to do your bidding. Oh well, on top of all the work I put into this, I now also have to write that wiki page. sigh |
Hi @dscho, thanks for looking over this issue again. I'm fully onboard with your thoughts on open source. As you can see from my GitHub activity, I'm a pretty active contributor and help whenever I can, even with mundane things like fixing typos. I also contribute on Wikipedia, Slant and in many other places, according to my skills and knowledge. I'm mostly a JavaScript dev these days who uses git on Windows, and those skills and knowledge, unfortunately, don't happen to include Windows API internals or anything about symlinks really, let alone obscure functions. I'm afraid I'd create more work instead in reviewing my naive contributions. As an ordinary user, when it comes to this particular project I can and am happy to contribute with acceptance testing, high-quality bug reporting, proofreading and building awareness of robust solutions (such as with 1, 2). |
@dandv okay, half of my rant was trying to prod you to have a look at https://github.com/git-for-windows/git/wiki/Symbolic-Links and edit it 😜 |
Thanks, folks. Are you aware of this git for windows fork supporting symbolic links? |
I see that the last commits there were 2011, and that they were from Karsten and Michael who has contributed here. While symlinks, in all their variants, are becoming more common on Windows, I'm not sure if an inclusive solution has been found yet that covers all users. |
@jbuchberger we integrated a heavily modified version of what you refer to. Git for Windows does handle symlinks just fine, iff the current user has the privilege to create symlinks, and iff the repository does not say What does not work is to use junction points as if they were symlinks. |
As a quick follow-up for anyone who found this thread via Google like me, I think the awesome maintainers of this project just provided what's needed for symlinks on windows to work without admin privileges. The recent Windows 10 Creators update which was just rolled out does support the creation of symlinks without admin privileges, but it requires that programs like git opt-in to the new behavior by passing a new flag into one of Windows' API calls. This was just merged in #1188, so symlinks should hopefully be a lot easier to deal with in Windows soon! 🎉 |
@toolness thanks for the update. Thus when installing git should we then check use symbolic links to use this feature on new windows versions? |
Modifications: - made symnlinks hardlinks cause git-for-windows/git#117 - made smallest random generated type in tests short because msvc's random lib doesnt support chars - updated some cmake stuff - Used the aaa rule to not assume the iterator type in commandhandler
I understand the "symlinks on Windows" problem is non-trivial, and there's been ongoing work to support them. Right now cloning a repo with a file symlink will create a plain text file corresponding to the symlink.
Tested with the portable 64-bit
git version 2.3.6.windows.2
in an Admin git-bash prompt on Windows 7.The text was updated successfully, but these errors were encountered: