File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed
Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments