-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
33 lines (26 loc) · 1.24 KB
/
README
File metadata and controls
33 lines (26 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
WINDOWS:
Install Gitbash
OSX / Linux
Create local git clone (of the bootcamp repository) on your machine.
$ cd my_git_dir
$ git clone https://github.com/cafrank/bootcamp
$ cd bootcamp
Copy completed coding exercises to the local git reoisitory
-- Create file Exercise-1.html in VS Code
-- Copy/Paste from https://www.udemy.com/course/the-web-developer-bootcamp/learn/quiz/5040066#overview
-- Save file
# OR (Optional) Unix hacker way:
$ cat > Exercise-1.html
-- Copy/Paste from https://www.udemy.com/course/the-web-developer-bootcamp/learn/quiz/5040066#overview
Ctrl-D
Repeat for Exercise-2 - 4
See: https://circleci.com/blog/pushing-a-project-to-github/?utm_medium=SEM&utm_source=gnb&utm_campaign=SEM-gnb-DSA-Eng-ni&utm_content=&utm_term=dynamicSearch-&gclid=Cj0KCQiA88X_BRDUARIsACVMYD8OHf0Mbn8QjENd-8YWfi8D1cpGquG-laAOzHN1PrL9q25lNv_c7FUaAhTVEALw_wcB
Add new files to the local repository
$ cd bootcamp
$ git add .
You can continue to edit the files before committing.
Commit the new files to the local repository
$ git commit -am "Adding Exercise 1 - 4, and README"
Push the committed files to Github
# Cloned. No need for: git remote add origin https://github.com/cafrank/bootcamp
$ git push origin