Day 9 Task: Deep Dive in Git & GitHub for DevOps Engineers.

  1. What is Git and why is it important?

    Git is a version control system that is widely used in the programming world. It is used for tracking changes in the source code during software development. It was developed in 2005 by Linus Torvalds, the creator of the Linux operating system kernel.

    Importance of Git

    Git is a speedy and efficient distributed VCS tool that can handle projects of any size, from small to very large ones. Git provides cheap local branching, convenient staging areas, and multiple workflows. It is free, open-source software that lowers the cost because developers can use Git without paying money. It provides support for non-linear development. Git enables multiple developers or teams to work separately without having an impact on the work of others.

    Source Code Management

  2. What is the difference Between Main Branch and Master Branch??

    In practical terms, the difference between the "main" and "master" branch is largely a matter of convention and preference. Some developers and organizations prefer to use "main" to refer to the default branch, while others continue to use "master".

    Regardless of which term is used, the default branch is typically where the latest stable version of the codebase is stored, and other branches are created off of it for experimental features or bug fixes.

  3. Can you explain the difference between Git and GitHub?

    Git vs. GitHub in Simple Terms

    Git is a version control system that lets you manage and keep track of your source code history. GitHub is a cloud-based hosting service that lets you manage Git repositories. If you have open-source projects that use Git, then GitHub is designed to help you better manage them.

  4. How do you create a new repository on GitHub?

    1. In the upper-right corner of any page, use the drop-down menu, and select New repository.

    2. Type a short, memorable name for your repository. For example, "hello-world".

    3. Optionally, add a description of your repository. For example, "My first repository on GitHub."

    4. Select Initialize this repository with a README.

    5. Click Create repository.

  5. What is difference between local & remote repository? How to connect local to remote?

    The local repository is a Git repository that is stored on your computer.

    The remote repository is a Git repository that is stored on some remote computer.

    The remote repository is usually used by teams as a central repository into which everyone pushes the changes from his local repository and from which everyone pulls changes to his local repository.

    When you are finished with doing changes into your workspace, you can add them to staging area and from there you can commit the changes to your local repository. This can be done even when you are disconnected from the internet and nobody else can see the changes in your local repository.

    Tasks:-

    • Set your user name and email address, which will be associated with your commits.

      task-2:

      • Create a repository named "Devops" on GitHub

      • Connect your local repository to the repository on GitHub.

      • Create a new file in Devops/Git/Day-02.txt & add some content to it

      • Push your local commits to the repository on GitHub.

Hope you like this blog. Please follow for more blogs like this.....

Thank you.