Introduction to database fundamentals group project
Progess so far | Issues to be claimed | Contribution Graph
- Create java project first
- Should have all menus and options possible for the scope of the project
- Be sure to keep separate classes for DB operations vs connections vs gui/text presentation
- Develop backend to support front end
- We already have tables in place but they can still be modified if need be
- Master branch is sacred
- I will handle all merges and pull requests
- You must checkout a new branch when devleoping a new "Feature"
git checkout -b nameoffeature- A feature could be creating the jdbc connection class or creating the main menu
git pull origin master- If developing new feautre
git checkout -b nameoffeatureIf feature already existsgit checkout nameoffeature - Make changes
git add -ACapital Agit commit -a -m "Changes you made"<- the message in quotes acts as a checkpoint in case you need to revert to a certain pointgit push origin nameoffeature<- You can choose to push either when you commit [Prefered] or you can push when your code is Production ready- At this point your code is on the server but not on the master branch
Go on to this repositories website and you will see that your feature branch is at the top with a green Compare and send pull request button, click that and use the @ mentions to mention my username (@sellnat77) in the pull request message so that I can review it and merge your changes into the master branch. if the option to automatically merge is available do not click it