diff --git a/Resources.html b/Resources.html index e6a8517..4f07fe0 100644 --- a/Resources.html +++ b/Resources.html @@ -3,69 +3,85 @@ layout: default --- - + function changeVideo(index) { + + document.getElementById("videoframe").src = getVideoUrl(index); + } +
+
+### When are `rebase`s needed?
+The main cause for needing to `rebase` is if the base branch (usually `origin/main`) of a Pull Request (PR) has commits added to it before the PR is merged.
+When this happens, the PR branch (for example, `mybranch`) should be rebased on the commits that have been added to the base branch.
+This is why you fetch the latest `origin/main` and then rebase onto it.
+
+##### Pull
+Before rebasing, make sure that `origin/main` is up-to-date and that you are on the branch you want to rebase (here: `mybranch`).
+That is covered [here](./create-branch.html#pulling-codeorigincode).
+Then we will rebase `mybranch` onto `origin/main`.
+
+### Rebase
+
+
+A `merge` box should appear above the textbox for commenting at the bottom of the PR page.
+Click on the small triangle to open the options, and select the merge method you choose.
+
+### Well done! You've merged your first Pull Request!
diff --git a/tutorials/tutorials.html b/tutorials/tutorials.html
new file mode 100644
index 0000000..1cacd33
--- /dev/null
+++ b/tutorials/tutorials.html
@@ -0,0 +1,11 @@
+---
+permalink: /tutorials/
+layout: default
+---
+