Q. What is GIT?

GIT is a distributed version control system and source code management 
(SCM) system with an emphasis to handle small and large projects with speed 
and efficiency.
------------------------------
Q. What is a repository in GIT?

A repository contains a directory named .git, where git keeps all of its 
metadata for the repository. The content of the .git directory are private 
to git.
------------------------------
Q. What is the command you can use to write a commit message?

The command that is used to write a commit message is “git commit –a”.  The 
–a on the command line instructs git to commit the new content of all 
tracked files that have been modified. You can use “git add<file>” before 
git commit –a if new files need to be committed for the first time.


Checkout more here! https://mindmajix.com/git-interview-questions

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to