<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: missing github email address in commits in Administration &amp; Architecture</title>
    <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126522#M3756</link>
    <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/34815"&gt;@Louis_Frolio&lt;/a&gt;&amp;nbsp;I have reached out to you on LinkedIn to share info more privately. Thanks for the reply.&lt;/P&gt;</description>
    <pubDate>Sat, 26 Jul 2025 06:17:38 GMT</pubDate>
    <dc:creator>aakashnand-kt</dc:creator>
    <dc:date>2025-07-26T06:17:38Z</dc:date>
    <item>
      <title>missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/118877#M3346</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;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?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Pawe_Janczyk_0-1747049752792.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/16760i39C235EA85F907E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Pawe_Janczyk_0-1747049752792.png" alt="Pawe_Janczyk_0-1747049752792.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 11:37:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/118877#M3346</guid>
      <dc:creator>Paweł_Janczyk</dc:creator>
      <dc:date>2025-05-12T11:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/118902#M3347</link>
      <description>&lt;DIV class="paragraph"&gt;To configure your GitHub client in your Databricks workspace and hide your email address so it is replaced by your GitHub username when committing changes, you can use the &lt;CODE&gt;git config&lt;/CODE&gt; command to set the appropriate configurations globally or locally for your repository.&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;Here are the steps:&lt;/DIV&gt;
&lt;OL start="1"&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Set your Git Configuration for Username&lt;/STRONG&gt;: You can set your GitHub username globally using the following command: &lt;CODE&gt;bash
git config --global user.name "YourGitHubUsername"
&lt;/CODE&gt; Replace &lt;CODE&gt;"YourGitHubUsername"&lt;/CODE&gt; with your actual GitHub username.&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Set your Git Configuration for Email&lt;/STRONG&gt;: To mask the email associated with your commits, GitHub provides a "noreply" email format that can be linked to your GitHub account. Use the following command: &lt;CODE&gt;bash
git config --global user.email "YourGitHubUsername@users.noreply.github.com"
&lt;/CODE&gt; Replace &lt;CODE&gt;"YourGitHubUsername@users.noreply.github.com"&lt;/CODE&gt; with the noreply email provided by GitHub.&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;You can verify and set this email in your GitHub account settings. Navigate to:
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;GitHub Settings&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Emails&lt;/STRONG&gt; &amp;gt; Ensure you add and confirm the &lt;CODE&gt;@users.noreply.github.com&lt;/CODE&gt; email to your account.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Install and Configure GitHub Client in Databricks&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Link your GitHub account in Databricks under &lt;STRONG&gt;User Settings&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Linked Accounts&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Configure Git credentials with a fine-grained Personal Access Token (PAT) or use OAuth 2.0 for authentication as described in &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/repos/get-access-tokens-from-git-provider" target="_blank"&gt;Microsoft Learn&lt;/A&gt;. This step allows Databricks to act on your behalf during Git operations performed within the workspace.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Verify Configuration&lt;/STRONG&gt;: After setting the configuration, verify the changes: &lt;CODE&gt;bash
git config --list
&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;This will display all the current configuration, including the username and masked email settings.&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;DIV class="paragraph"&gt;These steps should allow you to mask your email address and use your GitHub username for commits within your Databricks workspace. If issues arise, confirm that your GitHub username and noreply email are correctly associated with your GitHub account.&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;Hope this helps, Lou.&lt;/DIV&gt;</description>
      <pubDate>Mon, 12 May 2025 13:08:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/118902#M3347</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2025-05-12T13:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126413#M3747</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/34815"&gt;@Louis_Frolio&lt;/a&gt;&amp;nbsp;Where should we execute this commands?&lt;BR /&gt;When I tried running these commands in workspace from terminal or from notebook I am getting following error&lt;/P&gt;&lt;P&gt;Commands I tried&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;%sh&lt;BR /&gt;git config --global user.name &lt;/SPAN&gt;&lt;SPAN&gt;"USERNAME"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;git config --global user.email &lt;/SPAN&gt;&lt;SPAN&gt;"NOREPLY_EMAIL_ADDRESS"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;error: could not lock config file /Workspace/.proc/self/git/config: No such file or directory &lt;BR /&gt;error: could not lock config file /Workspace/.proc/self/git/config: No such file or directory&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 01:31:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126413#M3747</guid>
      <dc:creator>aakashnand-kt</dc:creator>
      <dc:date>2025-07-25T01:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126455#M3752</link>
      <description>&lt;H3 class="_1jeaq5e0 _1t7bu9hc y728l98b heading3 _1jeaq5e1"&gt;Why the Can Error Occur&lt;/H3&gt;
&lt;UL class="_1t7bu9h7 _1t7bu9h2"&gt;
&lt;LI class="_1t7bu9ha"&gt;&lt;STRONG&gt;Databricks now sets the environment variable&lt;/STRONG&gt; GIT_CONFIG_GLOBAL=/Workspace/.proc/self/git/config in notebooks and web terminals, so when you run any git --global command, Git tries to read/write the config at that path.&lt;/LI&gt;
&lt;LI class="_1t7bu9ha"&gt;&lt;STRONG&gt;On some cluster types (especially serverless and web terminal):&lt;/STRONG&gt;
&lt;UL class="_1t7bu9h8 _1t7bu9h2"&gt;
&lt;LI class="_1t7bu9ha"&gt;Databricks automatically sets up this virtual config file using workspace file system (WSFS)—but only if the right supporting services and preview features are enabled for your workspace and cluster type.&lt;/LI&gt;
&lt;LI class="_1t7bu9ha"&gt;&lt;STRONG&gt;If the supporting back-end (CP APIs, WSFS, or feature flags) isn’t available or not yet rolled out in your environment,&lt;/STRONG&gt; that virtual config file simply doesn’t exist—resulting in the "No such file or directory" locking error.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI class="_1t7bu9ha"&gt;This also happens on some free-tier or newer workspaces where the data plane-to-control plane integration for the Git config has not been fully configured or enabled yet&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tell me more about your environment? Are you on community edition?&amp;nbsp; Are you a customer of Databricks?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Louis&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 12:37:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126455#M3752</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2025-07-25T12:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126522#M3756</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/34815"&gt;@Louis_Frolio&lt;/a&gt;&amp;nbsp;I have reached out to you on LinkedIn to share info more privately. Thanks for the reply.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jul 2025 06:17:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126522#M3756</guid>
      <dc:creator>aakashnand-kt</dc:creator>
      <dc:date>2025-07-26T06:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126601#M3757</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/34815"&gt;@Louis_Frolio&lt;/a&gt;&amp;nbsp;Hi Louis,&lt;BR /&gt;&lt;BR /&gt;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 ?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 02:12:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126601#M3757</guid>
      <dc:creator>aakashnand-kt</dc:creator>
      <dc:date>2025-07-28T02:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126997#M3783</link>
      <description>&lt;P&gt;Have you tried configuring it through the UI?&lt;/P&gt;
&lt;DIV&gt;&lt;SPAN&gt; 1. Go to User Settings in your Databricks workspace&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; 2. Navigate to Git Integration&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; 3. Configure your Git provider credentials there&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; 4. This will handle the authentication and user identification for Git operations&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Try that and see if it solves the issue.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 30 Jul 2025 22:23:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/126997#M3783</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2025-07-30T22:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: missing github email address in commits</title>
      <link>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/127005#M3785</link>
      <description>&lt;P&gt;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&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="aakashnandkt_0-1753922038107.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/18633iF7E92BE6DB56D794/image-size/medium?v=v2&amp;amp;px=400" role="button" title="aakashnandkt_0-1753922038107.png" alt="aakashnandkt_0-1753922038107.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 00:34:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/missing-github-email-address-in-commits/m-p/127005#M3785</guid>
      <dc:creator>aakashnand-kt</dc:creator>
      <dc:date>2025-07-31T00:34:14Z</dc:date>
    </item>
  </channel>
</rss>

