
GIT Interview Questions
1) What is GIT? Git is an open source distributed version control system and source code management (SCM) system with an insistence to control small […]
1) What is GIT? Git is an open source distributed version control system and source code management (SCM) system with an insistence to control small […]
The term pull is used to receive data from GitHub. It fetches and merges changes from the remote server to your working directory. The git pull […]
In Git, the term squash is used to squash the previous commits into one. It is not a command; instead, it is a keyword. The […]
Rebasing is a process to reapply commits on top of another base trip. It is used to apply a sequence of commits from distinct branches […]
In Git, the merging is a procedure to connect the forked history. It joins two or more development history together. The git merge command facilitates […]
A branch is a version of the repository that diverges from the main working project. It is a feature available in most modern version control […]
The git status command is used to display the state of the repository and staging area. It allows us to see the tracked, untracked files […]
Cherry-picking in Git stands for applying some commit from one branch into another branch. In case you made a mistake and committed a change into […]
In Git, the term revert is used to revert some changes. The git revert command is used to apply revert operation. It is an undo […]
In Git, the term checkout is used for the act of switching between different versions of a target entity. The git checkout command is used to switch […]
The term upstream and downstream refers to the repository. Generally, upstream is from where you clone the repository, and downstream is any project that integrates […]
In Git, the term remote is concerned with the remote repository. It is a shared repository that all team members use to exchange their changes. […]
The term “git origin master” is used in the context of a remote repository. It is used to deal with the remote repository. The term […]
Copyright © 2021 | Design by VietMX
Contact: maixuanviet.com@gmail.com