Skip to content

Latest commit

 

History

History
79 lines (47 loc) · 1.59 KB

README.md

File metadata and controls

79 lines (47 loc) · 1.59 KB

Homework for the CodeUp Club Vue class

  1. Clone this repository locally

In your terminal type git clone [email protected]:VueLosAngeles/homework.git


  1. Change directories into the Homework repo

cd homework


  1. Create a new branch

Use the naming convention:
yourname_assignment#

like this: git branch jendiamond_assignment2


  1. Create a directory with you name on it ie: jendiamond

homework/02_domInteraction/Assignment2/jendiamond


  1. Add your completed homework files in that directory
  • homework/02_domInteraction/Assignment2/jendiamond/index.html
  • homework/02_domInteraction/Assignment2/jendiamond/main.js
  • homework/02_domInteraction/Assignment2/jendiamond/styles.css

Close all your files in your text editor, That way you can be sure that they are all saved.


  1. Do your git workflow to add and commit your homework
git status
git add .
git status
git commit -m 'Add Assignment 2'
git status

  1. Push your branch to the VueLosAngeles/homework repo

git push origin branchname

ie: git push origin jendiamond_assignment2

Do NOT git push origin master! or just git push - that default pushes to master


  1. Do a pull request

Go to https://github.com/VueLosAngeles/homework
Press the pull request button
Do not merge it.

If you don't see a pull request button; you probably forgot to commit your work. The branch will be pushed but there will be nothing in it.


  1. Check out your local master and oull the changes git checkout master
    git pull origin master

  1. Start at #3 again to add your next homework