Git Product home page Git Product logo

Publishing Your Pages Using Github

  1. check if git is installed git --version
  2. Create a local repo mkdir repoName
  3. initialize this repo git init
  4. create first file say index.html touch index.html
  5. check the status git status #it shows that git is aware of the file but it is not added to the repo.
Tracked and Untracked file
  • Tracked - files that Git knows about and are added to the repository
  • Untracked - files that are in your working directory, but not added to the repository`
Git staging environment

Staged files are files that are ready to be committed to the repository you are working on.
git add file_name

Git Commit

Git considers each commit change point or "save point". It is a point in the project you can go back to if you find a bug, or want to make a change.
Pro Tip : Always include a message while commiting file.
git commit -a -m message
-a: If file are not staged, it stages the file and commit -m: It adds a message

Git Commit Log

git log

Git Help
  • git command -help - See all the available options for the specific command
  • git help --all - See all possible commands
Publishing the page
  1. Add a index.html in your project
  2. Create gh-pages branch of this repository
  3. Now go to setting to find : your site is published at github_id.github.io/repo_name
  4. share that link

Setting Up git on your Local Machine

first install Git
sudo apt-get install git


configure git
git config --global user.name "your_user_name"
git config --global user.email "email_id"


To check configured user name and user email
git config --global user.name
git config --global user.email
Or Use
git config --global --list


create a local repository
git init my_repository
cd my_repository
gedit readme
gedit mycode.c


now add above two files in index.
git add readme
git add mycode.c


once we have made all the changes, we commit it
git commit -m "some_massage"


Now create a repository on github website


Add origin in your local repository
git remote add origin https:github.com/user_name/my_repository.git


Now push files

git push origin master


Resolving Issues


If on adding remote origin gives following error
raghvendra@raghs-pc:~/raghsgit$ git remote add origin https://github.com/raghsgit/raghsgit.git
fatal: remote origin already exists.

Resolving
raghvendra@raghs-pc:~/raghsgit$ git remote rm origin


Download a Project On your system to start work locally

  1. Download the repository with its content
    git clone "<url of project>"

  2. now edit the files

  3. Now add (prepare) files to upload.
    git add *

  4. if there is a problem in adding files, one solution is to add file forcefully git add -f *

  5. Commit the changes, with a message. git commit -m "message"

  6. Upload your file to server git push origin master

To synchronize with local repository

  1. Add origin master if not added already
    git remote add orign https://githubs.com/raghsgit/raghsgit.git

  2. Now Pull the code from server
    git pull origin master

  3. to remove origin master
    git remote rm origin

some Other useful Command

git remote -v
git remote add upstream
git remote -v

git fetch upstream
git fetch --all
git checkout master
git checkout gh-pages
git merge upstream/master

git fetch create new branch git checkout -b <branch_name> or to switch a branch git checkout <branch_name> to merge in header branch=> git merge origin/<branch_name>

Git new branch
  • git branch new_branch_name- create new branch
  • git branch - Shows all the branches
  • git checkout branch_name - change the branch
  • update files in this branch and stage and commit the file
  • to merge new branch with master branch:: *1. git checkout master -change the branch to master *2. git merge new_branch- master branch is merged with new_branch
    1. As the new_branch and master branch are essentially same, so we can delete new_branch git branch -d new_branch
Merge Conflict
  • open the file in editor and fix the conflict
  • commit the changes

Push local repository to Github

  • create a repo in the github & copy url of the repo from code section
    URL: https://gihub.com/<user_name>/repo_name.git
  • git remote add origin URL -specifies that you are adding a remote repository, with the specified URL, as an origin to your local Git repo.
  • git push --set-upstream origin master git push push our master branch to the origin url, and --set-upstream set master branch as the default remote branch
Git Pull
  • pull == fetch+merge

Markdown syntax guide

Headers

This is a Heading h1

This is a Heading h2

This is a Heading h6

Emphasis

This text will be italic
This will also be italic

This text will be bold
This will also be bold

You can combine them

Lists

Unordered

  • Item 1
  • Item 2
  • Item 2a
  • Item 2b

Ordered

  1. Item 1
  2. Item 2
  3. Item 3
  4. Item 3a
  5. Item 3b

Images

This is a alt text.

Links

You may be using Markdown Live Preview.

Blockquotes

Markdown is a lightweight markup language with plain-text-formatting syntax, created in 2004 by John Gruber with Aaron Swartz.

Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.

Tables

Left columns Right columns
left foo right foo
left bar right bar
left baz right baz

Blocks of code

let message = 'Hello world';
alert(message);

Inline code

This web site is using markedjs/marked.

Raghvendra Sharma's Projects

cosmos icon cosmos

[Show :heart: love by 🌟] Your personal library of every algorithm and data structure code that you will ever encounter

django icon django

This dir contain django project

facerecognition icon facerecognition

Machine Learning project to recognise faces from an Image just like facebook or video stream

hacktoberfest2017 icon hacktoberfest2017

Participate in Hacktoberfest by contributing to any Open Source project on GitHub! Here is a starter project for easiest contributors. #hacktoberfest

markup icon markup

The code we use to render README.your_favorite_markup

nano-electronic icon nano-electronic

This is my AMDP (Associate Member Developer) training first day project.

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.