I'm new to Git and I am trying to understand the concept. Maybe someone can help me with a few theoretical questions?
So there is a Git on the remote server and a cloned git on my local computer.
After cloning the git to my local computer with a read permission (gitolite with 'R' permission), can I do any damage to the git on the remote server?
If I do a 'git reset --hard
' (I know that there is often a strong advise against it), does this only reset the changes on my local computer or also on the remote server?
Is there a difference if I work with R
or RW+
authorization?