Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 1.19 KB

Setup.md

File metadata and controls

23 lines (18 loc) · 1.19 KB
  1. First start by installing ionic framework by following the instruction on their website

  2. Download and install Git from here
    Note: Once downloaded, a couple of commands will need to be executed

  3. open your Command line (terminal for mac users) as Admin and type the following command: go into the directory you want to save the project. git clone https://github.com/roncodingenthusiast/codebenders-applets-amc.git cd codebenders-applets-amc

  4. run the project: still in the command line cd organator ionic serve -l automatically opens your default browser and runs the app.

  5. ABC of github git status: to see what file has changed since your last commit
    git checkout insertbranchname : to switch to a branch
    git pull: get all new commits and files from the branch online to your computer

    git push: send all new commits and files from your computer to the branch you are on
    git commit -m "insert what you did here": this is the ctrl+s of github you insert a message. after this, the git push sends it online
    git branch: shows you what branch you are on.