BookmarkSubscribeRSS Feed
cm2020
Calcite | Level 5

Currently I have a pre-commit git hook that works if I use the CLI to commit to my git repo. Is there a way to make it work in SAS Studio?

2 REPLIES 2
Tom
Super User Tom
Super User

@cm2020 wrote:

Currently I have a pre-commit git hook that works if I use the CLI to commit to my git repo. Is there a way to make it work in SAS Studio?


If your SAS installation allows you to run operating system commands there shouldn't be any reason why you shouldn't be able to run the command line from the SAS code you submit to run even if you are using SAS/Studio to submit.

 

data _null_;
  infile "what ever command you use to commit" pipe;
  input;
  put _infile_;
run;
SASKiwi
PROC Star

Have you looked at the GIT functions in SAS? Whether these are available to you will depend on your SAS maintenance level.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 568 views
  • 0 likes
  • 3 in conversation