<?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: Using Git in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229581#M20481</link>
    <description>Hi&amp;nbsp;&lt;BR /&gt;Since version 6.1, both SVN and git are supported for Talend project storage.</description>
    <pubDate>Wed, 06 Jan 2016 01:53:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-01-06T01:53:46Z</dc:date>
    <item>
      <title>Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229572#M20472</link>
      <description>HI Anyone tried using the Git instead of the Subversion for Talend Enterprise Studio. 
&lt;BR /&gt;I think it won't support now, just wondering is anyone tried or is it going to support in newer version. 
&lt;BR /&gt;To Talend: 
&lt;BR /&gt;Are you guys have any plans to integrate Git in future releases ? 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;Ramesh</description>
      <pubDate>Tue, 15 Oct 2013 20:21:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229572#M20472</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-15T20:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229573#M20473</link>
      <description>Hello, you are not the first one asking for Git support. My point of view is the question "Why". Git has its strength in distributed code versioning and is especially designed for having the whole repository as copy for a remote work on distant location. That is never the use case using in Talend. Talend depends on a quick communication between all studios (done over the source code management) and SVN provides a better support for a star architecture as Git.
&lt;BR /&gt;I would never use Git for Talend because Git would complicating the process of syncing the local workspaces for sure.</description>
      <pubDate>Tue, 15 Oct 2013 23:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229573#M20473</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-15T23:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229574#M20474</link>
      <description>Hi,
&lt;BR /&gt;We don't use SVN as repository in the project and rather use TFS.
&lt;BR /&gt;Is there a way to use any other version control with talend or is it tightly coupled with SVN and can not be used with any other version control.
&lt;BR /&gt;Regards,
&lt;BR /&gt;Anupam.</description>
      <pubDate>Mon, 27 Jan 2014 21:56:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229574#M20474</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T21:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229575#M20475</link>
      <description>Currently SVN is deep embed in Talend tools and cannot be replaced. Please feel free to file a JIRA request for a different source code versioning system.</description>
      <pubDate>Thu, 30 Jan 2014 01:01:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229575#M20475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-30T01:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229576#M20476</link>
      <description>Hello,&lt;BR /&gt;We are using GIT as source control for our talend project. This lead to several limitation and you should using it only if svn is not an option for you.&lt;BR /&gt;Things you should keep in mind:&lt;BR /&gt;1.  Because Talend make changes to the talend.project.xml file when you close the project, you can have only one developer working per project at the same time (if not you will face merge conflict to resolve manually)&lt;BR /&gt;2. You need to add and commit your full project each time (those loosing the power of git regarding commiting individual file)&lt;BR /&gt;3. Because of 1 and 2 you have to create a separate Talend job for each project and not a unique central project referencing all your jobs&lt;BR /&gt;4. the git diff is hard to read due to all behind the scene talend is doing&lt;BR /&gt;&lt;BR /&gt;Here is the shell script we are using to initialize git in each talend workspace folder:&lt;BR /&gt;&lt;PRE&gt;#!/bin/bash&lt;BR /&gt;git init&lt;BR /&gt;echo "&lt;BR /&gt;# generated everytime you open the project&lt;BR /&gt;/temp  &amp;gt; .gitignore&lt;BR /&gt;/code/routines/system/  &amp;gt; .gitignore&lt;BR /&gt;/sqlPatterns" &amp;gt; .gitignore&lt;BR /&gt;git add .&lt;BR /&gt;git commit -m 'initial project version'&lt;/PRE&gt;&lt;BR /&gt;Some documentation I found on this topic&lt;BR /&gt;- &lt;A href="https://bowerstudios.com/node/871" rel="nofollow noopener noreferrer"&gt;https://bowerstudios.com/node/871&lt;/A&gt;&lt;BR /&gt;- &lt;A href="http://richardlog.com/post/15939924496/putting-talend-open-studio-projects-under-version" rel="nofollow noopener noreferrer"&gt;http://richardlog.com/post/15939924496/putting-talend-open-studio-projects-under-version&lt;/A&gt;&lt;BR /&gt;- &lt;A href="http://blog.courtine.org/2011/03/26/partager-un-projet-talend-open-studio-avec-git/" rel="nofollow noopener noreferrer"&gt;http://blog.courtine.org/2011/03/26/partager-un-projet-talend-open-studio-avec-git/&lt;/A&gt; (french)&lt;BR /&gt;- &lt;A href="http://datacatalyst.blogspot.ca/2012/06/version-control-talend-jobs-with-github.html" rel="nofollow noopener noreferrer"&gt;http://datacatalyst.blogspot.ca/2012/06/version-control-talend-jobs-with-github.html&lt;/A&gt;</description>
      <pubDate>Tue, 04 Mar 2014 21:15:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229576#M20476</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-04T21:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229577#M20477</link>
      <description>how to intall git software in talend ?
&lt;BR /&gt;please send me the procedure for that.
&lt;BR /&gt;
&lt;BR /&gt;Thanks 
&lt;BR /&gt;krishna</description>
      <pubDate>Wed, 25 Jun 2014 07:25:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229577#M20477</guid>
      <dc:creator>krishna_g</dc:creator>
      <dc:date>2014-06-25T07:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229578#M20478</link>
      <description>I guess there is no installation in Talend for Git. Mostly the developers use the command line tools from git for the Talend workspace and that is exactly what the previous post describes.</description>
      <pubDate>Wed, 25 Jun 2014 07:29:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229578#M20478</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-25T07:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229579#M20479</link>
      <description>Thanks</description>
      <pubDate>Wed, 25 Jun 2014 11:06:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229579#M20479</guid>
      <dc:creator>krishna_g</dc:creator>
      <dc:date>2014-06-25T11:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229580#M20480</link>
      <description>i think we can integrate with both&lt;BR /&gt;&lt;A href="https://help.talend.com/search/all?query=Setting+up+your+Repository+on+Git+or+SVN&amp;amp;content-lang=en" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/search/all?query=Setting+up+your+Repository+on+Git+or+SVN&amp;amp;content-lang=en&lt;/A&gt;</description>
      <pubDate>Tue, 05 Jan 2016 21:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229580#M20480</guid>
      <dc:creator>hson</dc:creator>
      <dc:date>2016-01-05T21:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229581#M20481</link>
      <description>Hi&amp;nbsp;&lt;BR /&gt;Since version 6.1, both SVN and git are supported for Talend project storage.</description>
      <pubDate>Wed, 06 Jan 2016 01:53:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229581#M20481</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-06T01:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229582#M20482</link>
      <description>Shong thanks for this good news.&amp;nbsp; 
&lt;BR /&gt;Is it for the tos or enterprise edition?</description>
      <pubDate>Wed, 06 Jan 2016 02:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229582#M20482</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-06T02:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using Git</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229583#M20483</link>
      <description>Hi magdmartin&amp;nbsp; 
&lt;BR /&gt;The team work feature is only available in Talend enterprise subscription edition.</description>
      <pubDate>Wed, 06 Jan 2016 07:27:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-Git/m-p/2229583#M20483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-06T07:27:56Z</dc:date>
    </item>
  </channel>
</rss>

