GIT 1.What is the purpose of git stash drop? In case we do not need a specific stash, we use git stash drop command to remove it from the list of stashes. By default, this command removes to latest added stash To remove a specific stash we specify as argument in the git stash drop <stashname> command. 2. What is the HEAD in GIT? A HEAD is a reference to the currently checked out commit. It is a symbolic reference to the branch that we have checked out. At any given time, one head is selected as the ‘current head’ This head is also known as HEAD (always in uppercase). 3. What is the most popular branching strategy in GIT? There are many ways to do branching in GIT. One of the popular ways is to maintain two branches: master : This branch is used for production. In this branch HEAD is always in production ready state. develop : This branch is used for development. In this branch we store the latest code developed in project. This is work in progress code. On...
Top 1000+ Interview Question Java JSP Spring Hibernate java collection multithreading java string serialization and desensitization final keyword in java package java design patterns maven git repository cloud computation UNIX shell interview question