In: Computer Science
Why is it better to use git cp instead of plain-old regular cp to copy a file within the repository?
What benefits would a large team of developers get from version
control? Identify at least two.
What benefits would a single developer (working alone) get from
version control? Identify at least two.
git-cp is a command for git that does copy, and git add (git add: Adds the changes committed to the staging area).
cp is a git command that performs the copy operation, i.e. copies the file contents from the source to the indexed destination.
Benefits that a large team of developers can get from version control are:
Benefits that a single developer can get from version control are:
Please do hit a like if you find my answer satisfactory!