Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands)

Git is a free and open-source distributed version control system that handles every change within the project. Git software runs on the local machine to keep track of the files and their history. You can also use Git’s online hosts to store files. It a…


This content originally appeared on DEV Community and was authored by aashiya123

Git is a free and open-source distributed version control system that handles every change within the project. Git software runs on the local machine to keep track of the files and their history. You can also use Git’s online hosts to store files. It also allows you to have a centralized place to store files to ensure easy access. With Git, you can easily make parallel changes that can be merged later without any issue.

Features of Git

  • It allows you to track history.
  • It is a free and open-source distributed version control system.
  • It supports non-linear development.
  • It allows you to create backups.
  • You can scale it according to your business needs.
  • It enhances team collaboration.
  • It ensures easy branching.
  • It supports distributed development.

*Git workflow *

  • Git workflow has three different stages-
  • Working directory- it allows you to alter the files and codes within your working directory.
  • Staging area- it allows you to stage the files and add their snapshots to the staging area.
  • Git directory or repository- it allows you to commit the modification permanently.

Basic Git commands
Creating a repository

  • Creating a new local repository from scratch
    $ git init [project name]

  • Downloading from an existing repository
    $ git clone my_url

Observing your repository

  • Listing new or modified files that are not being committed yet.
    $ git status

  • Displaying the file changes that are not being staged
    $ git diff

  • Display the change to the staged files
    $ git diff --cached

  • Display all the staged and unstaged file changes
    $ git diff HEAD

  • Display the differences between two commit ids
    $ git diff commit1 commit2

  • Listing the dates and the author of the changed file
    $ git blame [file]

  • Display the file changes for a particular id or a file
    $ git show [commit]:[file]

  • Display the complete change history
    $ git log

  • It will display the change history for a particular file or a directory
    $ git log -p [file/directory]

Working with branches

  • It will display all the local branches
    $ git branch

  • It will display all the local as well as the remote branches
    $ git branch -av

  • It will switch to a branch and will update the working directory accordingly
    $ git checkout my_branch

  • It will create a new branch named new_branch
    $ git branch new_branch

  • It will delete the branch named my_branch
    $ git branch -d my_branch

  • It will merge two branches, branch_a, and branch_b
    $ git checkout branch_b
    $ git merge branch_a

  • It will tag the current commit.
    $ git tag my_tag

Making changes

  • To stage the file and ready to commit
    $ git add [file]

  • It will stage all the changed file and ready to commit
    $ git add .

  • It will commit all the staged files to the versioned history
    $ git commit -m “commit message”

  • It will commit all the tracked file to the versioned history
    $ git commit -am “commit message”

  • It will unstage the file and keep the file changes
    $ git reset [file]

  • It will revert everything to the last commit
    $ git reset --hard

Synchronize

  • It will get the latest changes from the origin
    $ git fetch

  • It will fetch the latest changes from the origin and merge
    $ git pull

  • It will fetch the latest changes from the origin and rebase
    $ git pull --rebase

  • It will push the local changes to the origin
    $ git push

Help command

  • Use the git help command for more details $ git command --help


This content originally appeared on DEV Community and was authored by aashiya123


Print Share Comment Cite Upload Translate Updates
APA

aashiya123 | Sciencx (2021-12-28T05:41:38+00:00) Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands). Retrieved from https://www.scien.cx/2021/12/28/git-commands-cheatsheet-beginners-18-20-basic-git-commands/

MLA
" » Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands)." aashiya123 | Sciencx - Tuesday December 28, 2021, https://www.scien.cx/2021/12/28/git-commands-cheatsheet-beginners-18-20-basic-git-commands/
HARVARD
aashiya123 | Sciencx Tuesday December 28, 2021 » Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands)., viewed ,<https://www.scien.cx/2021/12/28/git-commands-cheatsheet-beginners-18-20-basic-git-commands/>
VANCOUVER
aashiya123 | Sciencx - » Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands). [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/12/28/git-commands-cheatsheet-beginners-18-20-basic-git-commands/
CHICAGO
" » Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands)." aashiya123 | Sciencx - Accessed . https://www.scien.cx/2021/12/28/git-commands-cheatsheet-beginners-18-20-basic-git-commands/
IEEE
" » Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands)." aashiya123 | Sciencx [Online]. Available: https://www.scien.cx/2021/12/28/git-commands-cheatsheet-beginners-18-20-basic-git-commands/. [Accessed: ]
rf:citation
» Git Commands Cheatsheet: Beginners (18-20+ basic Git Commands) | aashiya123 | Sciencx | https://www.scien.cx/2021/12/28/git-commands-cheatsheet-beginners-18-20-basic-git-commands/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.