Skip to content

Commit 9f6eb14

Browse files
authored
Update README.md
1 parent 41f070c commit 9f6eb14

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
# JavaScript-I-Mini
1+
# 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

Comments
 (0)