You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 26, 2020. It is now read-only.
5. Run the command `git remote -v`. You should have two remotes:
9
9
10
-
*`origin` pointing to your github repo, and
11
-
*`upstream` pointing to CodeYourFuture
10
+
-`origin` pointing to your github repo, and
11
+
-`upstream` pointing to CodeYourFuture
12
12
13
13
During the class (and for homework), we will go through each folder, reading the README and completing the exercises.
14
14
15
15
For **homework**, we expect you to `add` and `commit` your changes, and `push` them to your own repo (`origin`). You will then need to open a `pull request` so we can review your code.
16
16
17
-
###Opening a pull request
17
+
## Opening a pull request
18
18
19
19
A pull request is a request to merge one branch into another. In this case you will request to have the `master` branch of your repo, merged into the `master` branch of this (`upstream`) repo.
20
20
@@ -23,6 +23,6 @@ We won't actually merge your branch, but the pull request will allow us to view
23
23
1. Add the files you have changed using `git add .`
24
24
2. Commit your changes using `git commit` (you can add and commit changes multiple times as you complete exercises)
25
25
3. Push your changes to your own repo using `git push` (this automatically pushes to the `origin` remote)
26
-
4. Go to https://github.com/CodeYourFuture/js-exercises and click the **New pull request** button (this create a request to merge your `origin/master` to our `remote/master`)
26
+
4. Go to https://github.com/CodeYourFuture/JavaScript-Code-1-Homework and click the **New pull request** button (this create a request to merge your `origin/master` to our `remote/master`)
27
27
5. Give your pull request a title e.g. `Daniel's homework`
0 commit comments