1.
In Git, if you are executing the git pull origin master command, then where is the 'origin master' pointing to?
2.
You are using the git init command to create a .git directory that contains various subdirectories. Which of the following tasks cannot be completed by these subdirectories?
3.

What does the following git command do:

 
$ git clone https://github.com/seanseany/blockchain-cli
4.
In Git, you have submitted a project for revision control. Which of the following Git commands is used to record contents of all the files under the current directory?
5.
You have uploaded a project on the Git platform. Now, you have made some changes in some files of the project. In one step, you want these modified files to be automatically detected, added to an index, and committed. Which of the following commands will you use to perform the mentioned function?
6.
In Git, which of the following commands is used to check all the configuration settings for your repository?
7.

You have created a new Git directory and performed the first commit operation by using the git commit -m "First Commit" command. What is the significance of the b6bd481 string that is available in the second line of the following code:

 
SMA:my_git_project donny$ git commit -m "First Commit"
[master (root-commit) b6bd481] First Commit
3 files changed, 3 insertions(+)
create mode 100644 my_file
create mode 100644 myfile2
create mode 100644 myfile3
8.
You have used the git log command to review the history of your Git project. Which of the following information is not displayed after each commit operation?
9.
In Git, which of the following statements about the .gitignore file is correct?
10.
In Git, which of the following commands is used to rename the current branch to renamed_branch?