Getting Started with various Tools

14 / 43

Git

Purpose: Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Home Page: https://git-scm.com/

Documentation: https://git-scm.com/doc

Related resources to learn: https://cloudxlab.com/assessment/playlist-intro/831/git-version-control-basic-to-advanced?course_id=124&playlist_id=831

https://cloudxlab.com/assessment/playlist-intro/435/getting-started-with-git?course_id=124&playlist_id=435

How to get started:

  1. In the web console tab on the right side of the screen, create a Local Repository

    git init
    
  2. Setup Your username and email in the Git repository

    git config user.name "full_name"
    git config user.email "email_id"
    
  3. Commit to Git repository

    git commit -m "First commit"
    

No hints are availble for this assesment

Answer is not availble for this assesment

Loading comments...