6)What is the function of ‘GIT PUSH’ in GIT? ‘GIT PUSH’ updates remote refs along with associated objects. 7) What language is used in GIT? GIT is fast, and ‘C’ language makes this possible by reducing the overhead of runtimes associated with higher languages. 8) Why GIT better than Subversion? GIT is an open-source version control system; it will allow you to run ‘versions’ of a project, which show the changes that were made to the code overtime also it allows you keep the backtrack if necessary and undo those changes. Multiple developers can check out, and upload changes and each change can then be attributed to a specific developer. 9) What is “Staging Area” or “Index” in GIT? Before completing the commits, it can be formatted and reviewed in an intermediate area known as ‘Staging Area’ or ‘Index’. 10) What is GIT stash? GIT stash takes the current state of the working directory and index and puts in on the stack for later and gives you back a clean working directory. So, in case if you are in the middle of something and need to jump over to the other job, and at the same time you don’t want to lose your current edits then you can use GIT stash. 11) What is GIT stash drop? When you are done with the stashed item or want to remove it from the list, run the git ‘stash drop’ command. It will remove the last added stash item by default, and it can also remove a specific item if you include as an argument.
6)What is the function of ‘GIT PUSH’ in GIT?
‘GIT PUSH’ updates remote refs along with associated objects.
7) What language is used in GIT?
GIT is fast, and ‘C’ language makes this possible by reducing the overhead of
runtimes associated with higher languages.
8) Why GIT better than Subversion?
GIT is an open-source version control system; it will allow you to run ‘versions’ of a project, which
show the changes that were made to the code overtime also it allows you keep the backtrack if
necessary and undo those changes. Multiple developers can check out, and upload changes and each
change can then be attributed to a specific developer.
9) What is “Staging Area” or “Index” in GIT?
Before completing the commits, it can be formatted and reviewed in an intermediate
area known as ‘Staging Area’ or ‘Index’.
10) What is GIT stash?
GIT stash takes the current state of the working directory and index and puts
in on the stack for later and gives you back a clean working directory. So, in case if you are in the
middle of something and need to jump over to the other job, and at the same time you don’t want to
lose your current edits then you can use GIT stash.
11) What is GIT stash drop?
When you are done with the stashed item or want to remove it from the list,
run the git ‘stash drop’ command. It will remove the last added stash item by default, and it can also
remove a specific item if you include as an argument.
Comments
Post a Comment