Skip to content

Bodemola123/Tech-tok

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tech-tok

AN E-COMMERCE WEBSITE

HOW TO GET STARTED

  1. fork the repo

Screen Shot 2023-02-24 at 6 52 36 PM

You should see this when you forked. Notice the top left shows your github name and this project name.

Screen Shot 2023-02-24 at 6 53 24 PM

  1. Clone the repo

Screen Shot 2023-02-24 at 6 53 37 PM

You should see a green button that says code. when you click on the button copy the link under HTTPS.
  1. Open your vsCode and then enter the key (ctrl + J) to open the terminal

Screen Shot 2023-02-24 at 6 55 11 PM

  1. you use this command to add the repo to your vsCode
  • git clone "" the link you copied
  • notice you're in the main branch so make sure to change your branch like this. git checkout -b "my-branch-name" you if you're working on details feature it should be git checkout -b "details"

once you do that the place that was main will change to details. Now that you're in your branch you can work on your features.

  1. Once you're done working, you can now push to github. you push like this.
  • git add . (you're adding all the files you just worked on)
  • git status (to check if all your files has been added. if any one shows red note that it has not been added so go back and do the git add.
  • git commit -m "description of what you did" (you're a commiting your changes with a message of what you did)
  • git push origin (the-name-of-your-branch) example: git push details
  • Once you have pushed, create a pull request and stop there. Make sure NOT TO MERGE
  • Reach out to me if any of these still makes no sense

About

AN E-COMMERCE WEBSITE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 75.1%
  • HTML 24.9%