Botify LogoBotify
HomeAboutBlogContact

© 2025 Botify. All rights reserved.

    BotifyBotify
    Get Started

    Git and GitHub

    This is for beginner who wants to learn git and git hub in baby steps

    user image
    Muhammad yousuf

    .

    Published in Botify

    Dec 28, 2024

    1

    post image

    GIT

    git is a version controller which help us so track our code and through git we can collaborate with other developer


    GITHUB

    Git hub is a website like a data base we can store our code using git


    Git installation

    1. go to git website : https://git-scm.com/downloads
    2. download and install like your games
    3. configure git


    Configration


    1. configure name
    git config --global user.name "your name"
    
    1. configure email
    git config --global user.email "your email"
    
    1. check configration
    git config --list