1.

What does git add command do?

Answer»
  • This COMMAND adds files and changes to the index of the existing DIRECTORY.
     
  • You can ADD all changes at once using git add . command.
     
  • You can add files one by one specifically using git add <file_name> command.
     
  • You can add CONTENTS of a particular folder by using git add /<folder_name>/ command.


Discussion

No Comment Found