As of SourceTree 1.6.3, when I switch between branches across which file system file and/or folder renames have been performed (e.g. /src/Car/* has been moved to /src/Vehicle/*) or even a simple set of renames within the same folder (e.g. all /src/Car/ files get renamed from Car<name> to Vehicle<name>) I get a series of:
git -c diff.mnemonicprefix=false -c core.quotepath=false checkout <branchname>
error: cannot stat 'src/Car': Permission denied
errors. In addition the location itself becomes inaccessible via the filesystem. The /src/Car folder is unreadable, showing a "You must have Read permissions to view the properties of thos object. Click Advanced to continue." All subsequent operations in File Explorer result in the same error. No amount of fiddling seems to unlock the folder in question.
A reboot resolves the matter. Switching between branches immediately works as expected.
I banged my head against this for a while and it seems to be permissions based at first so i tried
it was always coming back with access denied and when you looked it wouldn't show you anything about the folder at all - no permissions no owner it was like it was corrupt or something.
Then i saw some of the comments above and closed everything on my machine - sourcetree, visual studio, explorer and reopened and it was then visible.
Something had locked the file down tight and wasn't letting anything in. It seemed to happen off the back of a failed pull for me.
My approach in future will be to shut down all applications possibly involved with the file and or reboot and then try and gain access.
I did all this and rebooted the machine. Fixed the problem. I think I've seen this before and was looking for a "real" solution other than a MS operating system confution. Reboot is my friend. Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. Exact process that locks folder can be found easily using Process Explorer - Find (free tool by Sysinternals):
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have been with the same problem, and the way that I figure out was restart my code editor closing all files related to the project (Atom) and my git GUI (SourceTree). After that, you can change the Branch.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It worked for me. thanks a ton @joelmez4
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! I just had to close Atom and retry again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works thanks Joel Meza
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @joelmez4!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I checked out master to do a git pull. Got errors about uncommitted files, so I did a git stash. After doing a git pull, I tried to get back to working branch. No luck. I had also done a git pop - no luck. I tried many attempts from here:
https://appuals.com/how-to-fix-git-error-you-need-to-resolve-your-current-index-first/
No luck.
Then I closed MATLAB, gitk, SourceTree, git bash, Windows Explorer - maybe more than necessary.
Brought up git bash, and checkout to my working branch worked.
Did a git pop and my files were restored.
Thank you for the simplest, and for me, the only working solution. :)
I guess reboot would also work, but this solution is less painful as it only affects the folder in question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check (and maybe recursively reset) the Windows file/folder permissions for the root folder of the clone. Preferably, you should have administrator/owner privileges for this folder an all of its descendants.
Also, I have seen a similar problem with old versions of msysgit, so if you are not using the embedded Git in SourceTree (you can check in Tools\Options\Git), update msysgit to the latest version from here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have this same problem when changing branches. So far I could only discover that the problem is not related to permissions, but those directories which are inaccessible are locked by the Windows Explorer.
If I search for processes holding the file handles for this dirs (in tools such as Process Hacker), it invariably returns Explorer. After forcing those handles to close I regain access. But then SourceTree detects many ficticious modifications, which I have to reset.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you tried updating Git to the latest version?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I'm using version msysGit 1.9.5. Git-cheetah is definitely one suspect, but I have so many shell integrations from different software packages that isolating the culprit won't be easy. I did notice, while tracking the locks, that there seem to be many open handles pointing to directories.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Since the process locking the files is Explorer, the culprit is probably one of the shell integrations. You could try switching off/uninstalling all of them and switching them back on one by one to see which one makes it go wrong again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the clue - I was continually getting locked up folders when switching branches and it was driving me nuts. When I investigated I had GIT 1.9.5 preview installed, just upgraded to 2.8.2 and rebooted and I can now switch branches without lockup.
As an aside - I think the files and folders are locked by virtue of crashed/locked git processes, killing them off got rid of the permission denied errors.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was having the same problem of permission denied on file while using git commands.
I just closed all the code editors, terminals and after reopened it was worked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I couldn't "git pull" or switch branches. Closing Windows Explorer solved the problem
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey, I had the same problem but got this workaround to work. I first got the error when I did this
git checkout develop
merge --no-ff my_local_branch
and it continued to show up when trying to
git checkout my_local_branch
not sure if anyone has found a solution but in order to regain access to your files you can push the local branch without checking it out
git push origin my_local_branch:my_local_branch
Check bitbucket or github (whichever you are using) to make sure your branch has been pushed. Afterwards you can clone your repo into a different location (I did this in a new folder on the C drive, outside of the Users directory and it worked). I got the files back by
git fetch && checkout my_local_branch
Then.........
git pull
git fetch && checkout my_local_branch
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Has anyone figured out a solution to this? Restarting the text editor (Atom for me) is not a valid solution. But as of now this is all that allows me to changes branches.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does this issue help me solve the issue? Or are U still having the problem? Looks like Atom doesn't know what it is. It is still happening to me and so I'm moving over to VSC because of this issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@chris del Did you read the issue I linked? I tracked down the bug in Atom, and submitted a PR which was merged. A simple workaround is to create the "recovery" directory.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.