Repository for SWEN 343 HR and Manufacturing Group
- Clone the above repository.
git clone https://github.com/amc9732/343HumanResources.git
- Navigate to the project repository and install the dependencies.
cd 343HumanResources
npm install
-
Run
node app.jsto start the application -
Point your browser to
http://localhost:3000and you should have the app running.
- Start on up to date "master" branch
git checkout master
git pull origin master
- Create new branch off of master branch
git checkout -b myExampleBranch
- Keep your branch updated with your changes you make to the code
git add . (this adds any new files you've made to the commit)
git commit -m This is an example commit message
git push origin myExampleBranch
git checkout master
git pull origin master
git merge myExampleBranch
git push origin master
*Let teammates know you merged into Master, and have them follow the next step
git fetch origin
git rebase origin/master
Most IDEs have a merge conflict GUI tools you can use.
You can also use git mergetool -y from terminal/cmd