I would like an explanation about what a Repository is. I crossed with the term in an online course I’m doing, but I didn’t get it right...
Repository is like a backup of your code. You have an original folder (which is your origin repository) and your master (which is the repository where you work/code). Whenever you finish a change/module in your code, you send your master’s changes to origin, and if there is a problem with your master, you can recover it through your origin repository. Roughly speaking, your repository is your backup of versions of your project/code.
Repository is like a backup of your code. You have an original folder (which is your origin repository) and your master (which is the repository where you work/code). Whenever you finish a change/module in your code, you send your master’s changes to origin, and if there is a problem with your master, you can recover it through your origin repository. Roughly speaking, your repository is your backup of versions of your project/code.
– Jefferson Souza