Dear Expert, In SASStudio, I tried to clone git repo by invoking git command via x statement, but return 'git command not found error', seems SAS will search the git command on the compute server that current SAS session connecting to. I connected to compute server pod shell, but it even have no dnf command, so how to install git on compute server? the code: data _null_; x "git clone giturl localdir"; run; Thanks!
... View more