This repository is a challenge that aims the practice of Git commands and GitHub interaction. The Git commands used were:
git init
: initialize repositorygit remote add origin REMOTE_LOCATION
: add origin remote repositorygit add *
: track all filesgit status
: view status of tracked filesgit commit -m "MESSAGE"
: commit with message descriptiongit push --set-upstream origin main
: push to remote origin and set it as upstream of maingit pull --rebase
: get updates from remote repository and show conflicts locallygit rebase --continue
: mark tracked files conflicts as resolved
This repository is a challenge of the JavaScript Evolution bootcamp offered by Impulso and Digital Innovation One.