<?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: See listing of git changes in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/See-listing-of-git-changes/m-p/2310346#M142253</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You might be able to list the files changed by the last N commits from git log command.&lt;/P&gt;&lt;P&gt;The idea looks like:&lt;/P&gt;&lt;P&gt;Windows:&lt;/P&gt;&lt;P&gt;git log -N --name-only --pretty=format: | sort /unique&lt;/P&gt;&lt;P&gt;Unix:&lt;/P&gt;&lt;P&gt;git log -N --name-only --pretty=format: | uniq&lt;/P&gt;&lt;P&gt;Hope it will give you some ideas about it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 May 2023 06:17:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-05-10T06:17:09Z</dc:date>
    <item>
      <title>See listing of git changes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/See-listing-of-git-changes/m-p/2310345#M142252</link>
      <description>&lt;P&gt;Git History view in Talend Studio shows all local commits. However, one must click each commit to view what that commit entailed. How would one obtain a listing of all local commit info; similar to svn log?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:50:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/See-listing-of-git-changes/m-p/2310345#M142252</guid>
      <dc:creator>talendpj</dc:creator>
      <dc:date>2024-11-15T21:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: See listing of git changes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/See-listing-of-git-changes/m-p/2310346#M142253</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You might be able to list the files changed by the last N commits from git log command.&lt;/P&gt;&lt;P&gt;The idea looks like:&lt;/P&gt;&lt;P&gt;Windows:&lt;/P&gt;&lt;P&gt;git log -N --name-only --pretty=format: | sort /unique&lt;/P&gt;&lt;P&gt;Unix:&lt;/P&gt;&lt;P&gt;git log -N --name-only --pretty=format: | uniq&lt;/P&gt;&lt;P&gt;Hope it will give you some ideas about it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 06:17:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/See-listing-of-git-changes/m-p/2310346#M142253</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-10T06:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: See listing of git changes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/See-listing-of-git-changes/m-p/2310347#M142254</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;To obtain a listing of all local commit information in Git, you can use the &lt;/P&gt;&lt;P&gt;git log&lt;/P&gt;&lt;P&gt; command. This command displays the commit history in reverse chronological order, showing details such as the commit hash, author, date, and commit message for each commit.&lt;/P&gt;&lt;P&gt;To view the commit history in the terminal, navigate to your Git repository directory and run the following command:  &lt;A href="https://www.chipotlefeedback.me/" alt="https://www.chipotlefeedback.me/" target="_blank"&gt;chipotlefeedback&lt;/A&gt;&lt;/P&gt;&lt;P&gt;git log&lt;/P&gt;&lt;P&gt;This will display a list of commits in your local repository, starting with the most recent commit. You can scroll through the log using the arrow keys and press &lt;/P&gt;&lt;P&gt;q&lt;/P&gt;&lt;P&gt; to exit the log view.&lt;/P&gt;&lt;P&gt;By default, &lt;/P&gt;&lt;P&gt;git log&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; displays a summary of each commit. If you want to see more detailed information about each commit, including the changes made in each commit, you can use the &lt;/P&gt;&lt;P&gt;--stat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; or &lt;/P&gt;&lt;P&gt;--patch&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; option with the &lt;/P&gt;&lt;P&gt;git log&lt;/P&gt;&lt;P&gt; command:&lt;/P&gt;&lt;P&gt;git log --stat&lt;/P&gt;&lt;P&gt;This will show a summary of the files changed in each commit along with the number of insertions and deletions.&lt;/P&gt;&lt;P&gt;git log --patch&lt;/P&gt;&lt;P&gt;This will display the full diff or patch for each commit, showing the exact changes made to each file.&lt;/P&gt;&lt;P&gt;You can also customize the output of &lt;/P&gt;&lt;P&gt;git log&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; using various formatting options. For example, you can use &lt;/P&gt;&lt;P&gt;--pretty&lt;/P&gt;&lt;P&gt; to specify a custom format for the log output. Here's an example that displays the commit hash, author, date, and commit message in a concise format:&lt;/P&gt;&lt;P&gt;git log --pretty=format:'%h - %an, %ar : %s'&lt;/P&gt;&lt;P&gt;This will show output like:&lt;/P&gt;&lt;P&gt;2a3d5f1 - John Doe, 3 days ago: Fix bug in feature XYZ&lt;/P&gt;&lt;P&gt;5c8fe2d - Jane Smith, 1 week ago: Add new functionality&lt;/P&gt;&lt;P&gt;These are some basic options for using &lt;/P&gt;&lt;P&gt;git log to obtain a listing of local commit information in Git. You can refer to the Git documentation for more advanced options and customizations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 10:33:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/See-listing-of-git-changes/m-p/2310347#M142254</guid>
      <dc:creator>Alicehatley</dc:creator>
      <dc:date>2023-05-10T10:33:06Z</dc:date>
    </item>
  </channel>
</rss>

