15%let dir = %sysfunc(pathname(work))/core;
16%put source clone rc=%sysfunc(GITFN_CLONE(https:
19%mf_writefile(&dir/somefile.txt,l1=some content)
21%mf_writefile(&dir/readme.md,l1=new readme)
23%mf_deletefile(&dir/package.json)
26%mp_gitstatus(&dir,outds=work.gitstatus)
30select count(*) into: test1 from work.gitstatus where staged='FALSE';
35 desc=3 changes are ready to add,
36 outds=work.test_results
40%mp_gitadd(&dir,inds=work.gitstatus,mdebug=&sasjs_mdebug)
43%mp_gitstatus(&dir,outds=work.gitstatus2)
46select count(*) into: test2 from work.gitstatus2 where staged='TRUE';
51 desc=3 changes were added,
52 outds=work.test_results