Published on :
Configuration CREATION_INTERNE

Git Authentication Variables Configuration

This code is also available in: Français Deutsch Español
This script defines a series of SAS© macro variables used to configure access to a remote Git repository. It specifies the local repository path, the remote repository URL (GitHub), as well as the paths to the public and private SSH keys for authentication.
Data Analysis

Type : CREATION_INTERNE


The code does not process analytical data but initializes environment variables for execution.

1 Code Block
MACRO STATEMENTS
Explanation :
Declaration of macro variables containing access paths and credentials for Git operations.
Copied!
1/*** auth info for Git functionality via SAS code ***/
2%let repo_path = "/home/sasdemo/git/Git_workshop";
3%let remoteURL = "https://github.com/JaredLinck/SAS-Studio-Git-workshop";
4%let pwd = "";
5%let ssh_public_key_filepath = "/home/sasdemo/.ssh/id_rsa_github_race.pub";
6%let ssh_private_key_filepath = "/home/sasdemo/.ssh/id_rsa_github_race";
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.