Introduction to Git

Tools to use

What's Git?

🤔 

Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files.

A system that records changes to a file/files over time so that you can recall/manage specific versions later

Version-Control?👉

Importance of Git?

🤔 

  • Enable teams to collaborate on projects faster and smarter.
     
  • Helps to track and manage changes you or your teammates make when working on a project.
     
  • Changes tracked can be recalled for future reference.

What's Github?

🤔 

Github is a website where your code/project repositories can be stored online.

A Repository?

It's a container for your project that is tracked by git

👉 github.com

💡💡💡 Let's Get Started

To do List;

  1. Create a repository on GitHub
     
  2. Clone repository to your computer
     
  3. Open repository in VS code and write some code.
     
  4. Record changes you've made.
     
  5. Commit/Push changes to Github
** The End **

Introduction to Git

By Roland Sankara

Introduction to Git

  • 3