Reader small image

You're reading from  Getting Started with Terraform. - Second Edition

Product typeBook
Published inJul 2017
Reading LevelBeginner
PublisherPackt
ISBN-139781788623537
Edition2nd Edition
Languages
Right arrow
Author (1)
Kirill Shirinkin
Kirill Shirinkin
author image
Kirill Shirinkin

Kirill Shirinkin is an IT consultant who focuses on Cloud technologies and DevOps practices. He has worked in companies of different sizes and areas, from an online language learning leader to a major IT provider for the global travel industry and one of the largest management consultancies. He is also a cofounder of online mentorship platform mkdev.me, where he leads a team and teaches his students all about DevOps.
Read more about Kirill Shirinkin

Right arrow

Version control with Git 101


Note

Feel free to skip this part if you are already familiar with version control and Git specifically.

Version Control System (VCS) simplifies work with constantly changing information, such as code. It allows us to store multiple versions of the same file, easily switch between them, and check who is responsible for which change. The most popular VCS today is Git, initially created to support Linux kernel development.

A VCS such as Git has many benefits:

  • You have access to all versions of all files in the Git repository at any time; it's almost impossible to lose any part of a piece of code or a previous state of the code.
  • Multiple developers can work on one project at the same time without interfering with each other's code and without fear of losing any changes made by colleagues. In Git, the possibilities of collaborative work are unlimited.

To create a repository, you've got to run git init in the project folder. To add files in it, first use git add file_name...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Getting Started with Terraform. - Second Edition
Published in: Jul 2017Publisher: PacktISBN-13: 9781788623537

Author (1)

author image
Kirill Shirinkin

Kirill Shirinkin is an IT consultant who focuses on Cloud technologies and DevOps practices. He has worked in companies of different sizes and areas, from an online language learning leader to a major IT provider for the global travel industry and one of the largest management consultancies. He is also a cofounder of online mentorship platform mkdev.me, where he leads a team and teaches his students all about DevOps.
Read more about Kirill Shirinkin