You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
any user can commit and push their changes in repo who access to do so through ssh key of their system, and can set their user.name , user.email by using git config --global.
I want to restrict user from their user.email mention through git config --global
For Example: I want only those user can access and commit changes to the repo who has "@gmail.com" account and no other user can commit or can push any changes even through they have access through ssh key.
We can get the user.name and user.email from the logs.
I also wrote a python script for the same to use it in pre-webhook :
author = push_data['push']['changes'][0]['commits'][0]['author']['raw'] // parth
print(author)
if(author.find('@gmail.com') < 0):
print("commit failed")
else:
print("successfully commit")
# Output: 'Harshit Goswami <harshitgoswami721@gmail.com>'(author)
'successfully commit'
but this data is retrieve from log present in my local
how can i access and get user.name and user.email of the person who want to commit?
Hi @Harshit_Goswami003 and welcome to the community.
I'm afraid that Bitbucket Cloud does not support server-side hooks at the moment.
We have a feature request that you can vote for to express your interest: https://jira.atlassian.com/browse/BCLOUD-10471
Until this feature is implemented, you could use client-side hooks instead. Client-side hooks need to be added to the .git/hooks directory of a repo in a user's local clone:
https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.