There is this matter HERE that can help you better understand how the process works.
The two errors that can occur is:
- You are not a collaborator, and therefore not allowed to work on the project.
- Your operating system does not give you permission to edit the files.
In the first case you need to be invited and accept the invitation, on the Github project page will appear, just above the used language bar, in the right corner the contributors menu, your name should be there.
In the second case the mistake must have been caused by you, probably at the time of git clone
you must have used the sudo
that of super user permission and your default user is unable to access these files, two basic solutions would be: give permission to your user or simply make the clone with your user, there is no reason to use the sudo
in this case.
After this done, just follow the flow with the branchs
and merges
avoiding as much as possible file conflicts, this is another "mistake" that can happen while making a pull --rebase
or a push
of the data, they happen when you both edit the same line of the same file, so you have to decide which of the changes to keep and move on with the process.
tries to check if you are really contributor, usually arrives an email and you confirm
– Davi Wesley
Send us the log of "denied permission".
– RXSD
You probably did the
git clone
as a super-user.– user72726