Skip to main content

git interview questions part-2



GIT 


1.Why do we need git add command in GIT?
GIT gives us a very good feature of staging our changes before commit. To stage the changes we use git add command. This adds our changes from working directory to the index. When we are working on multiple tasks and we want to just commit the finished tasks, we first add finished changes to staging area and then commit it. At this time git add command is very helpful.

2. Why do we use git reset command?
We use git reset command to reset current HEAD to a specific state. By default it reverses the action of git add command. So we use git reset command to undo the changes of git add command.

3. What does a commit object contain?
Whenever we do a commit in GIT by using git commit command, GIT creates a new commit object. This commit objects is saved to GIT repository.
The commit object contains following information:
1.    HASH: The SHA1 hash of the Git tree that refers to the state of index at commit time.
2.    Commit Author: The name of person/process doing the commit and date/time.
3.    Comment: Some text messages that contains the reason for the commit .

4. How can we convert git log messages to a different format?
We can use pretty option in git log command for this.
git log – pretty
This option converts the output format from default to other formats. There are pre-built formats available for our use.
git log –pretty=oneline
E.g. git log --pretty=format:"%h - %an, %ar : %s" ba72a6c - Dave Adams, 3 years ago : changed the version number

5. What are the programming languages in which git hooks can be written?
Git hooks are generally written in shell and PERL scripts. But these can be written in any other language as long as it has an executable. Git hooks can also be written in Python script.

6. What is a commit message in GIT?
A commit message is a comment that we add to a commit. We can provide meaningful information about the reason for commit by using a commit message. In most of the organizations, it is mandatory to put a commit message along with each commit. Often, commit messages contain JIRA ticket, bug id, defect id etc. for a project.

7. How GIT protects the code in a repository?
GIT is made very secure since it contains the source code of an organization. All the objects in a GIT repository are encrypted with a hashing algorithm called SHA1. This algorithm is quite strong and fast. It protects source code and other contents of repository against the possible malicious attacks. This algorithm also maintains the integrity of GIT repository by protecting the change history against accidental changes.

8. How GIT provides flexibility in version control?
GIT is very flexible version control system. It supports non-linear development workflows. It supports flows that are compatible with external protocols and existing systems. GIT also supports both branching and tagging that promotes multiple kinds of workflows in version control.

9. How can we change a commit message in GIT?
If a commit has not been pushed to GitHub, we can use git commit -- ammend command to change the commit message. When we push the commit, a new message appears on GitHub.

10. Why is it advisable to create an additional commit instead of amending an existing commit?
Git amend internally creates a new commit and replaces the old commit. If commits have already been pushed to central repository, it should not be used to modify the previous commits. It should be generally used for only amending the git comment.

11.What is a bare repository in GIT?
A repository created with git init –bare command is a bare repository in GIT. The bare repository does not contain any working or checked out copy of source files. A bare repository stores git revision history in the root folder of repository instead of in a .git subfolder. It is mainly used for sharing and collaborating with other developers. We can create a bare repository in which all developers can push their code. There is no working tree in bare repository, since no one directly edits files in a bare repository.

12. How do we put a local repository on GitHub server?
To put a local repository on GitHub, we first add all the files of working directory into local repository and commit the changes. After that we call git remote add <Remote Repo URL> command to add the local repository on GitHub server. Once it is added, we use git push command to push the contents of local repository to remote GitHub server.

13. How will you delete a branch in GIT?
We use git branch –d <branchname> command to delete a branch in GIT. In case a local branch is not fully merged, but we want to delete it by force, then we use git branch –D <branchname> command.

14. How can we set up a Git repository to run code sanity checks and UAT tests just before a commit?
We can use git hooks for this kind of purpose. We can write the code sanity checks in script. This script can be called by pre-commit hook of the repository. If this hook passes, then only commit will be successful.

15. How can we revert a commit that was pushed earlier and is public now?
We can use git revert command for this purpose. Internally, git revert command creates a new commit with patches that reverse the changes done in previous commits. The other option is to checkout a previous commit version and then commit it as a new commit.

16. In GIT, how will you compress last n commits into a single commit?
Tom compress last n commits a single commit, we use git rebase command. This command compresses multiple commits and creates a new commit. It overwrites the history of commits. It should be done carefully, since it can lead to unexpected results.

17. How will you switch from one branch to a new branch in GIT?
In GIT, we can use git checkout <new branchname> command to switch to a new branch.

18. How can we clean unwanted files from our working directory in GIT?
GIT provides git clean command to recursively clean the working tree. It removes the files that are not under version control in GIT. If we use git clean –x, then ignored files are also removed.

19. What is the purpose of git tag command?
We use git tag command to add, delete, list or verify a tag object in GIT. Tag objects created with options –a, -s, -u are also known as annotated tags. Annotated tags are generally used for release.

20. What is cherry-pick in GIT?
A git cherry-pick is a very useful feature in GIT. By using this command we can selectively apply the changes done by existing commits. In case we want to selectively release a feature, we can remove the unwanted files and apply only selected commits.

21.What is shortlog in GIT?
A shortlog in GIT is a command that summarizes the git log output. The output of git shortlog is in a format suitable for release announcements.

22. How can you find the names of files that were changed in a specific commit?
Every commit in GIT has a hash code. This hash code uniquely represents the GIT commit object.  We can use git diff-tree command to list the name of files that were changed in a commit. The command will be as follows: git diff-tree -r <hash of commit> By using -r flag, we just get the list of individual files.

23. How can we attach an automated script to run on the event of a new commit by push command?
In GIT we can use a hook to run an automated script on a specific event. We can choose between pre-receive, update or post-receive hook and attach our script on any of these hooks. GIT will automatically run the script on the event of any of these hooks.

24. What is the difference between pre-receive, update and post-receive hooks in GIT?
Pre-receive hook is invoked when a commit is pushed to a destination repository. Any script attached to this hook is executed before updating any reference. This is mainly used to enforce development best practices and policies. Update hook is similar to pre-receive hook. It is triggered just before any updates are done. This hook is invoked once for every commit that is pushed to a destination repository. Post-receive hook is invoked after the updates have been done and accepted by a destination repository. This is mainly used to configure deployment scripts. It can also invoke Continuous Integration (CI) systems and send notification emails to relevant parties of a repository.

25. Do we have to store Scripts for GIT hooks within same repository?
A Hook is local to a GIT repository. But the script attached to a hook can be created either inside the hooks directory or it can be stored in a separate repository. But we have to link the script to a hook in our local repository. In this way we can maintain versions of a script in a separate repository, but use them in our repository where hooks are stored. Also when we store scripts in a separate common repository, we can reuse same scripts for different purposes in multiple repositories.

26. How can we determine the commit that is the source of a bug in GIT?
In GIT we can use git bisect command to find the commit that has introduced a bug in the system. GIT bisect command internally uses binary search algorithm to find the commit that introduced a bug. We first tell a bad commit that contains the bug and a good commit that was present before the bug was introduced. Then git bisect picks a commit between those two endpoints and asks us whether the selected commit is good or bad. It continues to narrow down the range until it discovers the exact commit responsible for introducing the bug.

27. How can we see differences between two commits in GIT?
We can use git diff command to see the differences between two commits. The syntax for a simple git diff command to compare two commits is:
git diff <commit#1> <commit#2>

28. What are the different ways to identify a commit in GIT?
Each commit object in GIT has a unique hash. This hash is a 40 characters checksum hash. It is based on SHA1 hashing algorithm. We can use a hash to uniquely identify a GIT commit. Git also provides support for creating an alias for a commit. This alias is known as refs. Every tag in GIT is a ref. These refs can also be used to identify a commit. Some of the special tags in GIT are HEAD, FETCH_HEAD and MERGE_HEAD.

29. When we run git branch <branchname>, how does GIT know the SHA-1 of the last commit?
GIT uses the reference named HEAD for this purpose. The HEAD file in GIT is a symbolic reference to the current branch we are working on. A symbolic reference is not a normal reference that contains a SHA-1 value. A symbolic reference contains a pointer to another reference.
When we open head file we see:
$ cat .git/HEAD
ref: refs/heads/master
If we run git checkout branchA, Git updates the file to look like this:
$ cat .git/HEAD
ref: refs/heads/branchA

30. What are the different types of Tags you can create in GIT?
In GIT, we can create two types of Tags. Lightweight Tag: A lightweight tag is a reference that never moves. We can make a lightweight tag by running a command similar to following:
$ git update-ref refs/tags/v1.0
dad0dab538c970e37ea1e769cbbde608743bc96d
Annotated Tag: An annotated tag is more complex object in GIT. When we create an annotated tag, GIT creates a tag object and writes a reference to point to it rather than directly to the commit. We can create an annotated tag as follows:
$ git tag -a v1.1 1d410eabc13591cb07496601ebc7c059dd55bfe9 -m 'test tag'

31. How can we rename a remote repository?
We can use command git remote rename for changing the name of a remote repository. This changes the short name associated with a remote repository in your local. Command would look as follows:
git remote rename repoOldName repoNewName

32. Some people use git checkout and some use git co for checkout. How is that possible?
We can create aliases in GIT for commands by modifying the git configuration. In case of calling git co instead of git checkout we can run following command:
git config --global alias.co checkout So the people using git co have made the alias for git checkout in their own environment.

33. How can we see the last commit on each of our branch in GIT?
When we run git branch command, it lists all the branches in our local repository. To see the latest commit associated with each branch, we use option –v.
Exact command for this is as follows:
git branch –v
It lists branches as:
issue75 83b576c fix issue * master 7b96605 Merge branch 'issue75' testing 972ac34 add dave to the developer list

34. Is origin a special branch in GIT?
No, origin is not a special branch in GIT. Branch origin is similar to branch master. It does not have any special meaning in GIT. Master is the default name for a starting branch when we run git init command. Origin is the default name for a remote when we run git clone command. If we run git clone -o myOrigin instead, then we will have myOrigin/master as our default remote branch.

35. How can we configure GIT to not ask for password every time?
When we use HTTPS URL to push, the GIT server asks for username and password for authentication. It prompts us on the terminal for this information. If we don’t want to type username/password with every single time push, we can set up a “credential cache”. It is kept in memory for a few minutes. We can set it by running:
git config --global credential.helper cache

36. What are the four major protocols used by GIT for data transfer?
GIT uses following major protocols for data transfer:
1. Local
2. HTTP
3. Secure Shell (SSH)
4. Git

37. What is GIT protocol?
Git protocol is a mechanism for transferring data in GIT. It is a special daemon. It comes pre-packaged with GIT. It listens on a dedicated port 9418. It provides services similar to SSH protocol. But Git protocol does not support any authentication. So on plus side, this is a very fast network transfer protocol. But it lacks authentication.

38. How can we work on a project where we do not have push access?
In case of projects where we do not have push access, we can just fork the repository. By running git fork command, GIT will create a personal copy of the repository in our namespace. Once our work is done, we can create a pull request to merge our changes on the real project.

39. What is git grep?
GIT is shipped along with a grep command that allows us to search for a string or regular expression in any committed tree or the working directory. By default, it works on the files in your current working directory.

40. How can your reorder commits in GIT?
We can use git rebase command to reorder commits in GIT. It can work interactively and you can also select the ordering of commits.

41.How will you split a commit into multiple commits?
To split a commit, we have to use git rebase command in interactive mode. Once we reach the commit that needs to be split, we reset that commit and take the changes that have been reset. Now we can create multiple commits out of that.

42. What is filter-branch in GIT?
In GIT, filter-branch is another option to rewrite history. It can scrub the entire history. When we have large number of commits, we can use this tool. It gives many options like removing the commit related changes to a specific file from history. You can even set you name and email in the commit history by using filter-branch.

43. What are the three main trees maintained by GIT?
GIT maintains following three trees:
HEAD: This is the last commit snapshot.
Index: This is the proposed next commit snapshot.
Working Directory: This is the sandbox for doing changes.

44. What are the three main steps of working GIT?
GIT has following three main steps in a simple workflow:
1. Checkout the project from HEAD to Working Directory.
2. Stage the files from Working Directory to Index.
3. Commit the changes from Index to HEAD.

45. What are ours and theirs merge options in GIT?
In GIT, we get two simple options for resolving merge conflicts: ours and theirs These options tell the GIT which side to favor in merge conflicts. In ours, we run a command like git merge -Xours branchA As the name suggests, in ours, the changes in our branch are favored over the other branch during a merge conflict.

46. How can we ignore merge conflicts due to Whitespace?
GIT provides an option ignore-space-change in git merge command to ignore the conflicts related to whitespaces. The command to do so is as follows:
git merge -Xignore-space-change whitespace

47. What is git blame?
In GIT, git blame is a very good option to find the person who changed a specific line. When we call git blame on a file, it displays the commit and name of a person responsible for making change in that line.
Following is a sample:
$ git blame -L 12,19 HelloWorld.java
^1822fe2 (Dave Adams 2016-03-15 10:31:28 -0700 12)

public class HelloWorld {
^1822fe2 (Dave Adams 2016-03-15 10:31:28 -0700 13)
^1822fe2 (Dave Adams 2016-03-15 10:31:28 -0700 14)
Public static void main(String[] args) {
af6560e4 (Dave Adams 2016-03-17 21:52:20 -0700 16)
// Prints "Hello, World" to the terminal window.
a9eaf55d (Dave Adams 2016-04-06 10:15:08 -0700 17)
System.out.println("Hello, World");
af6560e4 (Dave Adams 2016-03-17 21:52:20 -0700 18)
}
af6560e4 (Dave Adams 2016-03-17 21:52:20 -0700 19)
}

48. What is a submodule in GIT?
In GIT, we can create sub modules inside a repository by using git submodule command. By using submodule command, we can keep a Git repository as a subdirectory of another Git repository. It allows us to keep our commits to submodule separate from the commits to main Git repository.

49.How can we see n most recent commits in GIT?
We can use git log command to see the latest commits. To see the three most recent commits we use following command:
git log -3

50. How can we know if a branch is already merged into master in GIT?
We can use following commands for this purpose:
git branch --merged master : This prints the branches merged into master
git branch --merged lists : This prints the branches merged into HEAD (i.e. tip of current branch)
git branch --no-merged : This prints the branches that have not been merged By default this applies only to local branches. We can use -a flag to show both local and remote branches. Or we can use -r flag to show only the remote branches.





Comments

Popular posts from this blog

Microservices Interview Questions

Microservices Interview Questions 1. What is a Microservice in Java? A Microservice is a small and autonomous piece of code that does one thing very well. It is focused on doing well one specific task in a big system. It is also an autonomous entity that can be designed, developed and deployed independently. Generally, it is implemented as a REST service on HTTP protocol, with technology-agnostic APIs. Ideally, it does not share database with any other service. 2. What are the benefits of Microservices architecture? Microservices provide many benefits. Some of the key benefits are: 1.      Scaling : Since there are multiple Microservices instead of one monolith, it is easier to scale up the service that is being used more. Eg. Let say, you have a Product Lookup service and Product Buy service. The frequency of Product Lookup is much higher than Product Buy service. In this case, you can just scale up the Product Lookup service to run on powerful hardware with multipl

DOCKER Interview questions

DOCKER 1. What is Docker? Docker is Open Source software. It provides the automation of Linux application deployment in a software container. We can do operating system level virtualization on Linux with Docker. Docker can package software in a complete file system that contains software code, runtime environment, system tools, & libraries that are required to install and run the software on a server. 2. What is the difference between Docker image and Docker container? Docker container is simply an instance of Docker image. A Docker image is an immutable file, which is a snapshot of container. We create an image with build command. When we use run command, an Image will produce a container. In programming language, an Image is a Class and a Container is an instance of the class. 3. How will you remove an image from Docker? We can use docker rmi command to delete an image from our local system. Exact command is: % docker rmi <Image Id> If we want to fin

Cloud Computing Interview Questions

Cloud Computing 1. What are the benefits of Cloud Computing? There are ten main benefits of Cloud Computing: Flexibility : The businesses that have fluctuating bandwidth demands need the flexibility of Cloud Computing. If you need high bandwidth, you can scale up your cloud capacity. When you do not need high bandwidth, you can just scale down. There is no need to be tied into an inflexible fixed capacity infrastructure. Disaster Recovery : Cloud Computing provides robust backup and recovery solutions that are hosted in cloud. Due to this there is no need to spend extra resources on homegrown disaster recovery. It also saves time in setting up disaster recovery. Automatic Software Updates : Most of the Cloud providers give automatic software updates. This reduces the extra task of installing new software version and always catching up with the latest software installs. Low Capital Expenditure : In Cloud computing the model is Pay as you Go. This means there is very