What is the purpose of Github?
GitHub is a code hosting platform for collaboration and version control.
GitHub lets you (and others) work together on projects.
Version Control System (VCS) are used for tracking changes in source code files.
GitHub essentials are:
- Repositories
- Branches
- Commits
- Pull Requests
- Git (the versio
n control software GitHub is built on). - Distributed version control
- Coordinates work between multiple developers/ testers
- Who made what changes and when
- Revert back at any time
- Local and Remote - DevOps
- Keeps track of code history
- Takes snapshot of your files
- You decide when to commit your changes
- You can visit code change anytime
- You stage files before committing
Comments
Post a Comment