Skip to content

HackYourFutureBEHomework/Class2-JS2-1_homework1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Class2-JS2-1_homework1

Homework exercise for the first week of the second javascript module

Once you have made your homework, you must submit it with a pull request. As a reminder you can follow the following flow of GIT commands to create a pull request:

GIT commands

Install git

Linux: sudo apt-get install git
Mac: brew install git
Win: Download

Configure name & mail

git config --global user.email “you@hyf.com”
git config --global user.name “you”

Clone repo

Clone repo: https is easiest, ssh is best!
Checkout Connecting to Github with SSH for a clear guide on how to connect with GIT through SSH.

HTTPS: git clone https://github.com/HackYourFutureBEHomework/Class2-JS2-1_homework1.git
SSH: git clone git@github.com:HackYourFutureBEHomework/Class2-JS2-1_homework1.git

Create branch

Create branch with the name of the homework and your name
git checkout -b #firstname-lastname_exercise1#

Add your homework

Create a folder with your name and add your homework to that folder. Add future homework for this javascript module to that folder with separate pull requests.
git add *

Check status

git status

Commit

git commit -m “added folder #firstname-lastname# with homework #exercise1#”

Push

git push

Create pull request on GitHub

Checkout the Pull requests of this homework repo where you can create a new pull request.



Good luck!

About

Homework exercise for the first week of the second javascript module

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors