Share | Some of the commands commonly used by git

Source: Internet
Author: User
Tags git clone

Recently, various project teams have turned from SVN to git

You'll be sharing some of the most common git operations and usage experiences in the near future:

Let's look at some of the commands you need to use in your work:

---------------------------


The basic common commands for Git are:

MKDIR:XX (Create an empty directory XX refers to the directory name)

PWD: Displays the path to the current directory.

Git init turns the current directory into a manageable git repository, creating a hidden. git file.

git add xx adds xx files to the staging area.

Git commit–m "XX" commits a file –m followed by a comment.

Git Status View warehouse status

git diff xx View xx file modified those content

git log View history

git reset–hard head^ or git reset–hard head~ fallback to previous version

(If you want to fallback to 100 versions, use Git Reset–hard head~100)

Cat xx View XX file contents

Git reflog View history's version number ID

Git checkout-xx all the changes to the XX file in the workspace.

git rm xx Delete xx file

Git remote add Origin https://github.com/idoxu/testgit associated with a distant library

Git push–u (not required for the first time with-U) Origin master pushes the current master branch to the remote library

git clone https://github.com/idoxu/testgit cloning from a remote repository

git checkout–b dev Create dev branch and switch to Dev branch

Git branch view all current branches

Git checkout master switches back to the master branch

git merge dev branches on the current branch

git branch–d dev Delete Dev branch

GIT branch name to create a branch

Git stash to hide the current job and resume work after resuming the site.

Git stash list view all hidden file lists

Git stash apply to recover hidden files, but the content is not deleted

git Stash Drop Delete file

Git stash pop recovers files while also deleting files

Git Remote to view information

Git remote–v View details of remote libraries

   git push Origin master  git pushes the master branch to the remote branch corresponding to the remote library

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.