On Feb 20, 2015, at 9:16 PM, Technext wrote:

> Thanks Junio for the prompt reply! :) Yes, that's exactly how i would like
> things to be. I'll definitely try to push this thing and see if this flow
> can be implemented.
> 
> However, can you please guide me whether there's any way i could have
> figured out about the git reset command that the developer executed on his
> local? (my first query)
> 
> Also, am i right in thinking that a check cannot be implemented using hooks
> or any other similar way? (my second query)


We have this on our repo.git/config file:

[receive]
    denyDeletes = true
    denyNonFastForwards = true

This should prevent people from
denyDeletes - deleting a branch
denyNonFastForwards - force push/reset of a remote branch

-Alfred


--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to