Connect your magical data pipelines from GitHub to your Mage Pro workspace using either the sacred OAuth tokens or the mystical SSH keys. Below lies the ancient knowledge for both rituals. Choose your path wisely!
/home/src/default_repo
.USER_CODE_PATH
environment variable in the Mage Cloud Management Portal, your directory will need to reflect that change./home/src/default_repo
. If you made changes to the target directory, type in your directory path.
Step 4: Add in an optional description.
Step 5: If you need to add additional stages click the “Add stages” button and go through the same process as above for all stages of your CI/CD workflow.
Step 6: When finished adding all stages click the “Deployment triggers” button to move onto the next stage in the workflow.
git checkout -b <branch-name>
(Creates and switches to a new branch named <branch-name>
, enabling isolated development for features or fixes.)
git status
(Displays the current state of the working directory and staging area, highlighting modified, staged, and untracked files.
git add .
(Stages all changes in the current directory and its subdirectories, preparing them for the next commit.)
git commit -m "<commit-message>"
(Records the staged changes in the repository with a descriptive message <commit-message>
, creating a new commit in the current branch.)
git push origin <branch-name>
(Uploads the commits from the local <branch-name>
to the corresponding remote branch on GitHub, making the changes available to collaborators.)
home/src/<Your user code path>
git config --global user.email "[your_email@example.com](mailto:your_email@example.com)"
git config --global [user.name](http://user.name/) "Your Username"