diff --git a/answers.txt b/answers.txt new file mode 100644 index 00000000..e7049fea --- /dev/null +++ b/answers.txt @@ -0,0 +1,9 @@ +What is the difference between a mergae and a rebase? +A merge lets you merge commit distinctive branches in Git. +Rebase allows you to extend the commits to the current branch. +Rebasing re-writes a branch's history by creating new commits as +an extension to the original branch. + +What is a remote repository? +A remote repository is a directory with files/code that are stored/hosted +by an external network or the internet.