Code Monkey home page Code Monkey logo

seainfo6150-final-project-webapp's Introduction

INFO6150

Class syllabus and class notes can be found in the docs directory in this repo. Repository of notes and in-class example files.

Github guide

We will use github repos throughout the course. If you are not familiar with git, or could use a refresher on how to use git, this is an excellent starter guide: https://guides.github.com/activities/hello-world/

Forking class repo and setting upstream remote

  1. Make sure you have git installed: https://git-scm.com/downloads
  2. Go to the git repo for this class: https://github.com/aprilbingham-neu/seainfo6150
  3. Click “Fork” to create your copy of the repo
  4. Click “Clone or download” to get a link to copy your fork on your computer
  5. Click “Use HTTPS”
  6. Copy link
  7. Open command line/terminal window and use these commands in a directory where you have admin permissions
git clone [copied link]
cd seainfo6150
git remote add upstream https://github.com/aprilbingham-neu/seainfo6150

Creating a branch from master

cd seainfo6150
git checkout master
git pull origin master
git checkout --b [new branch name]

Creating a branch from a branch other than master

cd seainfo6150
git checkout [branch to create branch from]
git checkout --b [new branch name]

Pushing your changes to your fork

Make changes to your branch, then

git add .
git commit -m “[commit name]”
git push origin [branch name]

Pulling updates from main repo

cd seainfo6150
git pull upstream master

seainfo6150-final-project-webapp's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.