โ05-12-2025 04:37 AM
Hello everyone,
I would like to configure github client on my databricks workspace. Especially an email address in not visible and is replace by my github user name. Do you know how I can do that?
โ05-12-2025 06:08 AM
git config
command to set the appropriate configurations globally or locally for your repository.bash
git config --global user.name "YourGitHubUsername"
Replace "YourGitHubUsername"
with your actual GitHub username.bash
git config --global user.email "YourGitHubUsername@users.noreply.github.com"
Replace "YourGitHubUsername@users.noreply.github.com"
with the noreply email provided by GitHub.@users.noreply.github.com
email to your account.bash
git config --list
โ07-24-2025 06:31 PM
@BigRoux Where should we execute this commands?
When I tried running these commands in workspace from terminal or from notebook I am getting following error
Commands I tried
%sh
git config --global user.name "USERNAME"
git config --global user.email "NOREPLY_EMAIL_ADDRESS"
error: could not lock config file /Workspace/.proc/self/git/config: No such file or directory
error: could not lock config file /Workspace/.proc/self/git/config: No such file or directory
โ07-25-2025 05:37 AM
Tell me more about your environment? Are you on community edition? Are you a customer of Databricks?
Louis
โ07-25-2025 11:17 PM
@BigRoux I have reached out to you on LinkedIn to share info more privately. Thanks for the reply.
โ07-27-2025 07:11 PM - edited โ07-27-2025 07:12 PM
@BigRoux Hi Louis,
I am using Enterprise databricks version. Could you please share the exact name of the features that needs to be enabled that I can ask my account team to enable this for us ?
Thanks
โ07-30-2025 03:23 PM
Have you tried configuring it through the UI?
โ07-30-2025 05:34 PM
I did try to check there but if I use Databricks App method to connect to Github (not the PAT) then it doesn't allow me to configure email address
Passionate about hosting events and connecting people? Help us grow a vibrant local communityโsign up today to get started!
Sign Up Now