Closed ghost closed 9 years ago
You are adding requirements from later assignments into assignment1. For example, you are using Glue in assignment1 but that was not added until assignment5. This is not a big deal as long as you are aware of it.
But, I would recommend working through the assignments step by step rather than merging requirements of various assignments together. But, if that is too simple for you, then make each assignment the way you seem fit. But, this may make it harder for us to provide code review etc.
To start at the proper place for assignment1 do the following:
git clone https://github.com/benleen/university.git
git branch -a
git branch
will not show remote branches only local. (add -a option to see remotes)git checkout assignment1
git checkout assignment1
has you working on branch named: 'assignment1'git status
will show you are on branch assignment1 (no longer on master) git checkout -b my_assignment1
Now, you have your own branch to work on assignment1 called: my_assignment1.git checkout assignment1
.git add .
git commit
git push origin my_assignment1
git checkout assignment2
.See comments here about configuring linting options for more details about shadow linting.
@zoe-1
@benleen I looked over your assignment a bit too quickly. Yes, you are right about the branches. I was looking at your master branch. Sorry. In respect to Travis, I would recommend getting travis to pass. But, since the original assignment did not require it, no worries if you do not.
@benleen Travis fails because you are getting below linting errors:
Make .eslintrc file in project root to fix shadow linting issues
.eslintrc file content below:
Above will make Travis hapi :-)