Hello When I try to puch from local copy of develop branch from my machine to the bit bucket server I get an error. My code is this %let my_local=full_path_of_local_repo; %let this_user=my_username; %let my_pub_key=full_path_of_public_key; %let my_pvt_key=full_path_of_pvt_key; data _null_; rc =GITFN_PUSH( "&my_local.", "&this_user", "", "&my_pub_key.", "&my_pvt_key."); put rc=; run; The error is ERROR: Return code from GIT is (12). too many redirects or authentication replays If I use my username and password it works. Git clone works with ssh keys Any advise? Note: I have gone through the sas documentation ( https://go.documentation.sas.com/?docsetId=lefunctionsref&docsetTarget=n10pxql65jtf4sn11m3d6jzcrgcz.htm&docsetVersion=9.4&locale=en ) and Zimmerman's paper (https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3057-2019.pdf.) Looking for something beyond this. Thanks once again.
... View more