GithubHelp home page GithubHelp logo

git-commands's Introduction

Git Commands

This Git contains all the useful commands for Git

Set global username and email for Git (Locally).

git config --global user.name "<your username>"
git config --global user.email "<your email>"

Initialise an empty Git Repository

git init

Clone an existing Git Repository

git clone <repository URL>

Add file/stage to git

git add <filename>

Add all the files to git

git add .

Commit all the staged files to git

git commit -m "<your commit message>"

Restore the file from being modified to Tracked

git restore <filename>
git checkout <filename>

Show the status of your Git respository

git status

Show the branches of your git repository

git branch

Checkout to a new branch

git checkout -b <branch name>

Checkout to an existing branch

git checkout <branch name>

Remove a branch from Git

git branch -d <branch name>

Show remote origin URL

git remote -v

Set the password of git through token

git remote set-url origin https://<tocken>@<git remote -v url add here after https url>

like that way

git remote set-url origin https://<tocken>@github.com/ayihandev/wanderlust.git

Add remote origin URL

git remote add origin <your remote git URL>

Remove remote origin URL

git remote remove origin 

Fetch all the remote branches

git fetch

Push your local changes to remote branch

git push origin <branch name>

Pull your remote changes to local branch

git pull origin <branch name>

Check you git commits and logs

git log

Happy Learning!

git-commands's People

Contributors

aadevcloud avatar

Watchers

 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.