From 2980251f0c6c7d805579091ef6dd0e13dd7e8166 Mon Sep 17 00:00:00 2001 From: ayewhysee <97919249+ayewhysee@users.noreply.github.com> Date: Fri, 10 Feb 2023 10:21:42 -0500 Subject: [PATCH 1/3] Create answers.txt --- answers.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 answers.txt diff --git a/answers.txt b/answers.txt new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/answers.txt @@ -0,0 +1 @@ + From 8abf0493574503e7e897514b91a171dd8bb23602 Mon Sep 17 00:00:00 2001 From: ayewhysee <97919249+ayewhysee@users.noreply.github.com> Date: Fri, 10 Feb 2023 11:53:09 -0500 Subject: [PATCH 2/3] Update answers.txt --- answers.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/answers.txt b/answers.txt index 8b137891..1a862cf1 100644 --- a/answers.txt +++ b/answers.txt @@ -1 +1,5 @@ - +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. From d5dff8cbae1e0c99648f8d00874cc3ccc8c96897 Mon Sep 17 00:00:00 2001 From: ayewhysee <97919249+ayewhysee@users.noreply.github.com> Date: Fri, 10 Feb 2023 11:56:26 -0500 Subject: [PATCH 3/3] Update answers.txt --- answers.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/answers.txt b/answers.txt index 1a862cf1..e7049fea 100644 --- a/answers.txt +++ b/answers.txt @@ -3,3 +3,7 @@ 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.