What does "warning: unable to unlink website: Operation not permitted" mean when checking out a Git
Posted
by James A. Rosen
on Stack Overflow
See other posts from Stack Overflow
or by James A. Rosen
Published on 2010-04-07T00:40:57Z
Indexed on
2010/04/07
0:43 UTC
Read the original article
Hit count: 356
git
I'm trying to create a local branch that tracks a remote branch. Here's what I get:
> git checkout master
> git push origin origin:refs/heads/myBranch
Total 0 (delta 0), reused 0 (delta 0)
To [email protected]:myrepo/myproject.git
* [new branch] origin/HEAD -> myBranch
> git fetch origin
> git checkout --track -b myBranch origin/myBranch
warning: unable to unlink website: Operation not permitted
Branch myBranch set up to track remote branch myBranch from origin.
Switched to a new branch 'myBranch'
What does "warning: unable to unlink website: Operation not permitted" mean? Did everything work fine?
© Stack Overflow or respective owner