Skip to content

TheAmalShibu/Intro-to-git

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 

Repository files navigation

Basic-Tech-Stack-for-DEV.

Introduction to Git and GitHub

  • What is 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. Its goals include speed,data integrity,and support for distributed, non-linear workflows.

Git Logo

  • What is GitHub?

GitHub, Inc. is a United States-based global company that provides hosting for software development version control using Git. In 2018, it became a subsidiary of Microsoft for US$7.5 billion. It offers the distributed version control and source code management (SCM) functionality of Git, plus its own features

GitHub Logo

Offical documentations of Git & GitHub

  • How to start with git ?

  • Installing git own your local machine,

    • For Windows users visit : Git and download the new version of git. Installing procudures are same when you installing a software setup in windows machine
    • For Linux Users, open up your terminal window (Ctrl + Alt + T) and type the following commands line by line
      • For Debian based OS ( Ubuntu,Kubuntu,Lubuntu,Debian,Kali linux, etc)

        $ sudo apt-get update
        $ sudo apt-get install git
        
      • For RPM based systems (Red Hat Entreprise Linux, openSUSE, Fedora, CentOS, Arch Linux)

        $sudo dnf install git-all
        

    To check whether git is installed or not

    $ git --version 
     [it'll show your version of git]
    
  • First things first - Config Git with Username and User Email

    In Linux terminal or Windows Command prompt enter the following commands with your details

      $ git config --global user.name "YourNameGoesHere"
      $ git config --global user.email "YourEmailGoesHere"
    
  • Basic Git Commands and uses

    include Akshay: Pulling the remote Git Repository and overriding ...

  • Git Working Model

    git conceptual model

  • Remote Git Repository aka Github

    Managing Your Files

About

Introduction to Git & GitHub

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published