<?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: How to configure SAS to use GITFN_xxx() functions? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714748#M220699</link>
    <description>&lt;P&gt;I can use GIT command from command line on my PC.&amp;nbsp; Not sure where it is installed.&lt;/P&gt;
&lt;P&gt;In SAS&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;x cd "&amp;amp;githome" ;
x "git checkout master";
x "git pull origin master";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Or command window&lt;/P&gt;
&lt;PRE&gt;PS H:\&amp;gt; git --version
git version 2.18.0.windows.1
PS H:\&amp;gt;     &lt;/PRE&gt;</description>
    <pubDate>Wed, 27 Jan 2021 19:30:22 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2021-01-27T19:30:22Z</dc:date>
    <item>
      <title>How to configure SAS to use GITFN_xxx() functions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714736#M220692</link>
      <description>&lt;P&gt;Anyone know how to configure GIT and/or SAS on Unix and/or Windows so that the new GITFN_CLONE() etc commands can find it?&lt;/P&gt;
&lt;PRE&gt;39    %let src=https://github.com/sasutils/macros.git ;
40    %let target=%sysfunc(pathname(work)) ;
41    data _null_;
42     rc= gitfn_clone("&amp;amp;src","&amp;amp;target");
43     put rc=;
44    run;
NOTE: GIT2.DLL not found in the system location, trying the extension path.
NOTE: GIT2.DLL not found in the extension path, trying the install path.
ERROR: Unable to load libgit2 module.
rc=-1
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 19:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714736#M220692</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-01-27T19:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure SAS to use GITFN_xxx() functions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714742#M220696</link>
      <description>&lt;P&gt;Do you have git or github client installed on your system?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 19:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714742#M220696</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2021-01-27T19:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure SAS to use GITFN_xxx() functions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714745#M220698</link>
      <description>&lt;P&gt;one more thought, maybe try to create empty sub-directory in the work, like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options dlcreatedir;
libname git "%sysfunc(pathname(work))/git";

data _null_;
    rc = gitfn_clone (                /*1*/
     "https://github.com/yabwon/SAS_PACKAGES.git",                     /*2*/
     "%sysfunc(pathname(git))");             /*3*/
    put rc=;                          /*4*/
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 19:14:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714745#M220698</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2021-01-27T19:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure SAS to use GITFN_xxx() functions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714748#M220699</link>
      <description>&lt;P&gt;I can use GIT command from command line on my PC.&amp;nbsp; Not sure where it is installed.&lt;/P&gt;
&lt;P&gt;In SAS&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;x cd "&amp;amp;githome" ;
x "git checkout master";
x "git pull origin master";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Or command window&lt;/P&gt;
&lt;PRE&gt;PS H:\&amp;gt; git --version
git version 2.18.0.windows.1
PS H:\&amp;gt;     &lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jan 2021 19:30:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714748#M220699</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-01-27T19:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure SAS to use GITFN_xxx() functions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714758#M220704</link>
      <description>&lt;P&gt;Not sure, but maybe this could help:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/6313203/unable-to-load-dll-git2-dll-the-specified-module-could-not-be-found" target="_blank"&gt;https://stackoverflow.com/questions/6313203/unable-to-load-dll-git2-dll-the-specified-module-could-not-be-found&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 19:41:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714758#M220704</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2021-01-27T19:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure SAS to use GITFN_xxx() functions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714768#M220710</link>
      <description>&lt;P&gt;One last thing, do you have M6?&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 20:06:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714768#M220710</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2021-01-27T20:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure SAS to use GITFN_xxx() functions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714773#M220712</link>
      <description>&lt;P&gt;Switching from SAS 9.4M5 to SAS 9.4M7 seems to have fixed this.&amp;nbsp; Also for cloning pointing at an empty directory is important.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 20:20:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-configure-SAS-to-use-GITFN-xxx-functions/m-p/714773#M220712</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-01-27T20:20:46Z</dc:date>
    </item>
  </channel>
</rss>

