Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1 KB

02-setup-repository.md

File metadata and controls

45 lines (28 loc) · 1 KB

Setup the repository

This section will indicate the steps to follow to configure the code repository.

Fork the repository

Make a fork of the repository to your work area in GitHub. This way you can modify the code freely.

GitHub fork

Clone the repository

Clone the repository to your computer:

Change YOUR-GITHUB-USER by your user on GitHub.

git clone [email protected]:YOUR-GITHUB-USER/gitops-get-started.git

Access the cloned repository directory:

cd gitops-get-started

Modify the installation file

Modify the installation file so that it uses your repository as the source of origin:

Change YOUR-GITHUB-USER by your user on GitHub.

sed  -i "" "s/mmorejon/YOUR-GITHUB-USER/g" scripts/install.sh

Commit the changes and send them to your repository on GitHub:

git add scripts/install.sh
git commit -sm 'Change github repository.'
git push origin master

Next: Setup Digital Ocean