<?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 Git is not picking up changes in Notebooks in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Git-is-not-picking-up-changes-in-Notebooks/m-p/4009632#M2684</link>
    <description>&lt;P&gt;We are experiencing an issue where Git is not picking up any changes made in notebooks. We have tried to attach the workspace to a different repo workspace and the issue is presisting. Does anyone have a solution to get this working again?&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jun 2024 17:38:29 GMT</pubDate>
    <dc:creator>amcpherson</dc:creator>
    <dc:date>2024-06-25T17:38:29Z</dc:date>
    <item>
      <title>Git is not picking up changes in Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Git-is-not-picking-up-changes-in-Notebooks/m-p/4009632#M2684</link>
      <description>&lt;P&gt;We are experiencing an issue where Git is not picking up any changes made in notebooks. We have tried to attach the workspace to a different repo workspace and the issue is presisting. Does anyone have a solution to get this working again?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 17:38:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Git-is-not-picking-up-changes-in-Notebooks/m-p/4009632#M2684</guid>
      <dc:creator>amcpherson</dc:creator>
      <dc:date>2024-06-25T17:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Git is not picking up changes in Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Git-is-not-picking-up-changes-in-Notebooks/m-p/4010568#M2693</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Hey Amcpherson,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like Git is not detecting changes in your notebooks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are some steps to troubleshoot:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Check Git Status&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Run git status in your repository to see if Git recognizes any modified files.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Ensure you’re in the correct branch.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Notebook File Format&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Confirm that your notebooks are saved in a format Git recognizes (e.g., .ipynb for Jupyter notebooks).&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Avoid binary formats that Git might ignore.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Commit and Push&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Explicitly commit your changes using git add . and git commit -m "Your message".&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Push to the remote repository with git push.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Git Configurations&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Verify your Git configurations (username, email, etc.) using git config --list.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Set them correctly if needed.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Workspace Permissions&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Ensure you have the necessary permissions to modify files in the repository.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Check if any access restrictions are causing issues.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Repo Remotes&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Confirm that your workspace is correctly linked to the Git repository.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Use git remote -v to check remotes.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Cache and Credentials&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Clear Git cache with git rm --cached . -r.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Re-enter credentials when prompted.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;IDE or Git Client&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;If using an IDE or Git client, ensure it’s configured properly.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Restart the client if needed.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Remember to consult your team or IT support if the issue persists.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chiranjeevi Kudupudi&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 26 Jun 2024 06:49:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Git-is-not-picking-up-changes-in-Notebooks/m-p/4010568#M2693</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-26T06:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Git is not picking up changes in Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Git-is-not-picking-up-changes-in-Notebooks/m-p/4012123#M2708</link>
      <description>&lt;P&gt;Thank you Chiranjeevi for your response. I think this was a bug on the microsoft side. Everything was working fine for months then stopped working for a total of 5 days. This morning everything was working again.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 00:10:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Git-is-not-picking-up-changes-in-Notebooks/m-p/4012123#M2708</guid>
      <dc:creator>amcpherson</dc:creator>
      <dc:date>2024-06-27T00:10:23Z</dc:date>
    </item>
  </channel>
</rss>

