Search Your Question

GIT Interview Questions 2

  1. GIT Commit command
    The command that is used to write a commit message is “git commit -a”
    Now explain about -a flag by saying -a on the command line instructs git to commit the new content of all tracked files that have been modified. Also, mention you can use “git add <file>” before git commit -a if new files need to be committed for the first time.

  2. How can you fix a broken commit?
    In order to fix any broken commit, use the command “git commit --amend”. When you run this command, you can fix the broken commit message in the editor.

  3.  Basic Git commands:

    CommandFunction
    git rm [file]deletes the file from your working directory and stages the deletion.
    git log list the version history for the current branch.

    git show [commit]  

    shows the metadata and content changes of the specified commit.

    git tag [commitID] 

    used to give tags to the specified commit.

    git checkout [branch name]

    git checkout -b [branch name]

    used to switch from one branch to another.

    creates a new branch and also switches to it.



  4. In Git how do you revert a commit that has already been pushed and made public?
    There can be two approaches to tackle this question and make sure that you include both because any of the below options can be used depending on the situation:

    Remove or fix the bad file in a new commit and then push it to the remote repository. This is the most obvious way to fix an error. Once you have made necessary changes to the file, then commit it to the remote repository using the command: git commit -m “commit message”

    Also, you can create a new commit that undoes all changes that were made in the bad commit. To do this use the command

    git revert <name of bad commit>

  5. What is the difference between git pull and git fetch?
    Git pull command pulls new changes or commits from a particular branch from your central repository and updates your target branch in your local repository.

    Git fetch is also used for the same purpose but it works in a slightly different way. When you perform a git fetch, it pulls all new commits from the desired branch and stores it in a new branch in your local repository. If you want to reflect these changes in your target branch, git fetch must be followed with a git merge. Your target branch will only be updated after merging the target branch and fetched branch. Just to make it easy for you, remember the equation below:

    Git pull = git fetch + git merge

  6. What is git stash?
    Often, when you’ve been working on part of your project, things are in a messy state and you want to switch branches for some time to work on something else. The problem is, you don’t want to do a commit of half-done work just so you can get back to this point later. The answer to this issue is Git stash.

    Stashing takes your working directory that is, your modified tracked files and staged changes and saves it on a stack of unfinished changes that you can reapply at any time.

  7. What is the function of ‘git stash apply’?
    If you want to continue working where you had left your work then ‘git stash apply‘ command is used to bring back the saved changes onto your current working directory.

  8. What is git stash drop?
    Git ‘stash drop’ command is used to remove the stashed item. It will remove the last added stash item by default, and it can also remove a specific item if you include it as an argument.

    Now give an example.

    If you want to remove a particular stash item from the list of stashed items you can use the below commands:
  • git stash list: It will display the list of stashed items like:
  • stash@{0}: WIP on master: 049d078 added the index file
  • stash@{1}: WIP on master: c264051 Revert “added file_size”
  • stash@{2}: WIP on master: 21d80a5 added number to log

    If you want to remove an item named stash@{0} use command git stash drop stash@{0}.

  1. Can you explain the Gitflow workflow?
    To record the history of the project, Gitflow workflow employs two parallel long-running branches – master and develop:

    Master – this branch is always ready to be released on LIVE, with everything fully tested and approved (production-ready).

    Hotfix – these branches are used to quickly patch production releases. These branches are a lot like release branches and feature branches except they’re based on master instead of develop.

    Develop – this is the branch to which all feature branches are merged and where all tests are performed. Only when everything’s been thoroughly checked and fixed it can be merged to the master.

    Feature – each new feature should reside in its own branch, which can be pushed to the develop branch as their parent one.

  2. What is Git fork? What is the difference between fork, branch, and clone?
    A fork is a copy of a repository. Normally you fork a repository so that you are able to freely experiment with changes without affecting the original project. Most commonly, forks are used to either propose changes to someone else’s project or to use someone else’s project as a starting point for your own idea.

    git cloning means pointing to an existing repository and make a copy of that repository in a new directory, at some other location. The original repository can be located on the local file system or on remote machine accessible supported protocols. The git clone command is used to create a copy of an existing Git repository.

    In very simple words, git branches are individual projects within a git repository. Different branches within a repository can have completely different files and folders, or it could have everything the same except for some lines of code in a file.

  3. What is the difference between rebasing and merge in Git?
    In Git, the rebase command is used to integrate changes from one branch into another. It is an alternative to the “merge” command. The difference between rebasing and merge is that rebase rewrites the commit history in order to produce a straight, linear succession of commits.

    Merging is Git’s way of putting a forked history back together again. The git merge command helps you take the independent lines of development created by git branch and integrate them into a single branch.

  4. What is git cherry-pick?
    The command git cherry-pick is normally used to introduce particular commits from one branch within a repository onto a different branch. Another common use is to forward- or back-port commits from a maintenance branch to a development branch. This is in contrast with other ways such as merge and rebase which normally apply many commits onto another branch.

    Consider:

    git cherry-pick <commit-hash>

  5. How do you squash the last N commits into a single commit?
    There are two options to squash the last N commits into a single commit include both of the below-mentioned options in your answer
    If you want to write the new commit message from scratch use the following command

    git reset –soft HEAD~N &&git commit

    If you want to start editing the new commit message with a concatenation of the existing commit messages then you need to extract those messages and pass them to Git commit for that I will use

    git reset –soft HEAD~N &&git commit –edit -m”$(git log –format=%B –reverse .HEAD@{N})”

  6. How do I rename a local Git branch?
    Here are the steps to rename the branch:

    Switch to the branch which needs to be renamed

    git branch -m <new_name>
    git push origin :<old_name>
    git push origin <new_name>:refs/heads/<new_name>

No comments:

Post a Comment

Thanks