This is a repo with notes about CI/CD tech stack, for Testers from the Udemy Course: CI/CD para Testers: Jenkins, GitHub Actions a fondo!
Configurando la terminal Homebrew en MAC
La página oficial de Homebrew es esta: https://brew.sh/
Pero, en esta otra página se explica mucho mejor el proceso. Además de contener instrucciones para las terminales ZSH y BASH, sea cual se nuestra preferencia.
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-homebrew-on-macos
Instalar los paquetes necesarios para el curso
On the newly created Homebrew terminal, install VSC IDE with the command:
brew install visual-studio-code
On the newly created Homebrew terminal, install Git with the command:
brew install git
Open a Terminal inside VSC, and change Global Settings to re-name any future Branch to main.
git config --global init.defaultBranch main
git init
git status
rm -rf .git
ls -al
git status
git clone https://github.com/qa-gvazquez/CI_CD_for_Testing.git
En construcción.