Coder Social home page Coder Social logo

iot-spring-app's Introduction

assn4-erbdesc

This repo uses SpringMVC instead of JavaFX.

Developers

Kaitlin Erb, Marc-André Descoteaux

Design Document

The assn4 design doc is: Seng330_Assn4_designDoc.pdf

The assn3 design doc is: Seng330_Assn3_designDoc.pdf

Both versions have been kept to show the progress in the repo.

Contribute to the Repo

Creating a Branch and Making Changes

# Creating a branch
git checkout -b branch-name

# Make changes and see what files differ from master
git status

# Add modified files one at a time
git add {$specific file names}
# OR to add all files
git add .

Once small changes have been made, commit and push them.

git commit -m "Description of Changes"
git push origin branch-name

Merging Code

# update your origin/* pointers
git fetch
 
# checkout the branch you’re merging in (assumes branch-name points to origin/branch-name)
git checkout branch-name
 
# rebase the whole branch onto master:
git rebase origin/master

# update origin/branch name to the new rebased head
git push --force-with-lease origin branch-name
 
# point your master branch to latest origin/master
git checkout master && git fetch && git reset --hard origin/master
 
# merge in the branch and force a ‘merge commit’
git merge --no-ff branch-name -m "Merge 'your-branch-name'"
 
# push your changes; this will automagically resolve the Github PR
git push origin master
 
# if no issue with merge, you can now delete the branch locally
git branch -d branch-name
 
# put this deleted branch back into origin
git push origin :branch-name

See https://github.com/SENG330/course/blob/master/assignment3.md

iot-spring-app's People

Contributors

k-erby avatar mdesco18 avatar neilernst avatar

Watchers

James Cloos avatar  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.