Giter Club home page Giter Club logo

information_systems's Introduction

GitHub Guide

This is a guidebook for anyone looking to get started with GitHub. It includes both the use of Git commands (Git Bash) and GitHub desktop for someone not looking to delve into scripting.

Topics

  1. What is Git ?
  2. What's a repo
  3. Basic Git Commands
  4. Methods to use GitHub
  5. Steps to use Github Desktop
  6. Basics of GitBash
  7. Branches

What is Git

Git is a system that allows an individual or team to keep track of changes that they make their files on common platform. It prevents the need for multiple versions of the files. It's extremely useful for collaborative projects.

What is a repo

A repository is just a storage location for files and folders. A repository can be local or remote. The local repository is located on your PC whereas the remote repository is on the cloud (in our case our remote repo is GitHub).

Basic Git Commands

git clone

git clone command lets us copy the entire repository into a file of our choice.

git pull

git pull command lets us pull changes or updates into an already existing local repo from the remote repo on GitHub.com

git add

git add is responsible for snapshotting the file in preparation of versioning

git status

git status gives a list of all the files that are ready to be committed

git commit

git commit command lets you commit this code within your local repo along with a message about the changes. It gets the code ready to be pushed into the remote repo and accessible to the team.

git push

git push is the final command that pushes the code with changes to your remote repo (in our case it is GitHub.com)

How do all these commands work together ?

In a case where the local repo doesn't exist, you would have to clone the repo into your PC using the git clone command. If you've already setup a local repo, you can pull the updates that may have been made by other team members and pushed onto GitHub, into your own local repository to make those changes visible.

We can access files from our local repositories and make changes to them/add new files. These updates can then be staged as ready to be committed. We then commit the staged files with a message that states the changes made/files added along with additional information that you might need to refer to in case you wanted to go back to a previous version of your code.

Now, these commited files are ready to be pushed to the remote repository. From where they can again be cloned/pulled.

NOTE:

You can also go to GitHub.com or GitHub Desktop and access the changes made by the different contributors (the members who have permission to push changes into the repo) of the repositories.

Methods to use Git

As someone who needs to get started with GitHub, you can use the Desktop version of GitHub.

Steps to use GitHub Desktop

Download and Install

Download GitHub Desktop Here

Github Desktop

Sign in to Github

Use an existing github account to login. Make sure that you have access (i.e. you are a contributor) to the repo that you plan to work on. You will not be able to view private repos without permissions. To Sign in : Select File > Options > Sign in (GitHub) Github Desktop

Select the repo

Select the repo that you need to work on Github Desktop

Clone the repo

Use either Ctrl + Shift + O or File>Clone a repository to open up window where you can enter the path of your local repo. Github Desktop

Make an update

Go to the path where your local repo is stored and make the changes/updates to the code. Once you're done, get back to Github and you should see that your changes have been detected.

Commit the changes

Commit your changes in the local repo with an appropriate description message Github Desktop

Push code

Push the updates to GitHub.com. Check on github to see if updates are present. If there is a conflict, take a look at it and resolve it. Repository > Push

Pull code

Once you have a local repo setup, you only need to pull updates of your files into the same local repo and don't need to clone the repo. Repository > Pull Github Desktop

Some great references

  1. How to use Github - Siraj Raval
  2. Learn to Git - Basic Concepts
  3. Git Bash File Commands
  4. Github Cheatsheet
  5. Git Documentation

Author

Mihir Bhatia - Visit my Website

information_systems's People

Contributors

mihirbhatia999 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.