We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41f070c commit 9f6eb14Copy full SHA for 9f6eb14
1 file changed
README.md
@@ -1 +1,20 @@
1
-# JavaScript-I-Mini
+# JavaScript I Mini
2
+
3
+### Topics
4
+ * git
5
+ * GitHub
6
+ * Node
7
8
+In this mini lab you will get your environment configured and practice the basics of `git`.
9
10
+### Instructions
11
12
+* Install `git` : https://git-scm.com/downloads
13
+* Install `node` : https://nodejs.org/en/download/
14
+* Fork this repo.
15
+* Clone the fork you made onto your local machine. `git clone <fork_url>`
16
+* Add a file to the repo called `script.js` that contains a single line of code: `console.log('hello world!');`
17
+* Add your changes: `git add --all`
18
+* Commit your changes: `git commit -m "Initial commit"`
19
+* Push your changes to your fork: `git push origin master`
20
+* Submit a pull request back to the repo that you forked from.
0 commit comments