Coder Social home page Coder Social logo

ctml-group / git-tuto Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 2.76 MB

This repository contains some files to learn how to get started with GitHub

License: GNU General Public License v3.0

version-control git github-config github github-branches github-pages github-api gith

git-tuto's Introduction

CTML logo

Welcome to GitHub !


Let's start exploring GitHub together ..

What is Git?

Points to remember:

It is a open-source version control tool that manages different version of your codes/files, create a history of changes and tracks the changes. Centralised and Distributed Version Control System (DVCS) are most common version control system existing in community.


Centralised Version Control System (CVCS)

  • All the files, project files version history should be saved in central server
  • To make changes you need to work locally once done push it to central server
  • You will need access to central server
  • You’ll only checkout the files you needed to modify therefore you won’t have complete version of code locally
  • If something happens to central server, you may not be able to connect to your files
  • Softwares such as Subversion uses centralised VCS
  • Slow(er), network dependant, long urls, manual merges. To be used with care

Distributed Version Control System (DVCS)

  • You’ll always have access to copy of entire project and its version history locally
  • To make changes you can work both locally or remotely github, if you choose to work locally you will just need to connect to server for a few mins to sync your files to remote server
  • You can access your files from anywhere across the globe
  • Softwares such as GitHub, Mercurial etc. uses disttributed VCS
  • Fast(er), network independent, often automatic merges. To be used early and often

Snapshots are everything in GitHub

  • Information is a set of snapshots, every committed change, Git takes another Snapshot
    • Snapshots are full version of file that has changed not just changes to it
  • If we think about Subversion information is set of files plus deltas of changes over time – does not have full version

With GitHub you decide when to commit (i.e. to take snapshot) and of which files

Installation instructions

Install git using terminal or command prompt

Linux (Debian)>
sudo apt-get install git
Linux (Fedora)>
sudo yum install git
MacOS>
brew install git
Windows user can use this link>
[Using this link](https://git-scm.com/downloads)

Once you complete the download, you can verify its  installation using>
git  -- version or git version

Git is primarily a command line tool, but it also provides GUI based feature. If you would like to have GUI feature you can install GitHub Desktop in your local PC or laptop

Git Configuration

git config --global user

.name <name>: Setup your name. .email <email>: Setup your email. Set your name and email that will be attached to your commits

Examples:
git config --global user.name "your-git-user-name"
git config --global user.email "your-git-email"

I'm sure most of us like alias, if so why not setting some alias as well to make our life even easier 😄 Alias is a short form of frequently used commands

Some Examples, you can set it as you would prefer, (not mandatory)
git config --global alias.s status
git config --global alias.c commit
git config --global alias.br branch
git config --global alias.co checkout
git config --global alias.df diff
git config --global alias.lg 'log -p'

Basic Terms in Git

Repository: It is the collection of all the files and history of those files, consist all your commits, often shortened as repo Repo can stay in local machine or remote server github, the act of copying remote repo to local machine is called cloning

Commit: The act of creating snapshot; a project is made up of lots of commits, contains three piece of information

					- How the files have changed from previous version
					- A reference to commit that came before 
					- A commit id # also called hash code

Pull: Suppose you make some changes on your repo remotely that change will not be synced in your local machine, the process of downloading the remote commit to local machine is called pulling, we use “git pull command” conversely

Push: When you made changes locally that will not be reflected in remote server until you push them, we use “git push” command

GitHub Workflow: Git works in three stages

.git directory (History) : Place where the metadata and object database of the project is stored, this is what's copied when you clone a repository.

  1. Working Directory: Place where all the work takes place create, edit, delete, organize and save files, this is a version of the project that is checked out and placed on disk this is a file in the .git directory, that stores information about what will go into your next commit

  2. Staging Area: Revised or modified files are staged, we add snapshots to the files in the staging area

  3. Git Repository: Now we do commit that stores snapshot to your git repo and will be saved as version history

GitHub Basic commands


Getting started, and making changes


git init

Start tracking a project in Git, this command creates the .git directory


git status

Show the status of modified files in the working directory.

These can be untracked, unstaged or staged for commit.

  • go into new folder
  • do git init
  • do git status
  • no files
  • touch readme.md
  • git status - see untracked files

git add <files>

Copy snapshots of modified files to the staging area, this command tracks new files

git commit

This command save a snapshot of the staging area to the history as a commit

Points to remember: An important thing to note - is that every time a file changes, if you want to include that change with the next commit - you need to tell git to re-add it, as it is adding a snapshot of the file at the time the command is run.

-- edit file -- git add -- edit file again -- need to add it again

Undo

We are humans, sometimes its normal to make mistakes i.e. to say NOT every commit is perfect

Git provides some ways to work with your history using reset, revert, and checkout

'git revert '

Point to remember:

Git revert is one of the safer ways of to undo a changes, as it does not rewrite the history of your project. Git tries to figure out how to undo a change, and create a new commit for that change


git reset -- <files>

This command copy files from the latest commit to staging area

Effectively undoes git add <files> by replacing files in the staging area by those last committed

Omit <files> to unstage everything.

Points to remember:

git revert does not move the project back to a previous state but git reset does. Git revert also allows you to revert changes at any point in history, where git reset can only work backwards from the current commit

Git reset can be considered a ' very dangerous' command also, as it is possible to lose work as you are unable to recover your original work


git checkout -- <files>

This command copy files from the staging area to the working directory.

Omit <files> to throw away all local changes

git rm

This command remove files from the working directory and the staging area

--cached: Remove files from the staging area only and keep them in the working directory.


git mv

This command track the movement (renaming) of files

It essentially moves the file on the filesystem, git rms and then git adds the moved file.


git clone <url>

This command copies an existing Git repository to your local machine and checks out a working copy of the latest version of the default branch


git diff

This commad shows the exact lines added and removed in the working directory.

--cached | --staged: Compare your staged changes to those of your last commit.


git log

This command helps you to browse and inspect the evolution of the project.

multiselect-demo

GitHub Branching

Points to remember:

Branching is done to develop ceratin features (module) isolated from other. When you create a repo master branch is the default branch. We should use other branches for development and merge them back to the master after completion

Suppose we want to create some new branch with name Test-A Test-B to develop some different functionality with our existing code
git checkout -b Test-A
git checkout master (switch back to master branch)
git branch -d Test-A (deletes the Test-A branch)
git merge <Test-A> (merges the changes made in Test-A feature to master branch)
git merge <Test-B> (merges the changes made in Test-B feature to master branch)	
git diff <master> <Test-A> (shows difference between master and Test-A branch)
git diff <master> <Test-B> (shows difference between master and Test-B branch)

References

Created with ❤️ by Akshay Anand

git-tuto's People

Contributors

anand-me 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.