Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is version control about deployment history or development history?

... say I check out some code, do a little dev or refactoring or whatever .. do I only check it back in when I'm completely happy? ... what if I change my mind about stuff while i'm coding? can I go back to a previous local version? is there a history of my local development?

Is version control about deployment history or development history?

like image 523
blank Avatar asked Dec 03 '08 19:12

blank


People also ask

What is version control history?

Version control, also known as source control, is the practice of tracking and managing changes to software code. Version control systems are software tools that help software teams manage changes to source code over time.

What are the three types of version control?

The types of VCS are: Local Version Control System. Centralized Version Control System. Distributed Version Control System.

What is the reason we version control our code?

The purpose of version control is to allow software teams track changes to the code, while enhancing communication and collaboration between team members. Version control facilitates a continuous, simple way to develop software.

What is version controlling in DevOps?

A version control system records changes to files stored in the system. These files can be source code, assets, or other documents that might be part of a software development project. Teams make changes in groups called commits or revisions.


1 Answers

Short answer. It's both.

You need to be able to roll back to earlier versions for lots of reasons.

like image 124
wcm Avatar answered Oct 21 '22 06:10

wcm