- Install eclipse
- Install JDK, JRE and set windows paths
- Create a dummy hello world project
- Create a github account
- Create a github repo
- Configure git within eclipse and repo's
- Understand the differences between commit, push
- Test
- ctrl-shift-# to commit quickly
- ctrl-f11 to run your sample project
#Recall git workflow discussed
- git clone repo.git
- git checkout branch name i.e. master or develop whatever devs are using
- git checkout -b feature i.e. feature can be JIRA name
- git add this will start tracking files you will change
- git commit -am "comment" i.e this will label your changes you have made to the file
- git push origin feature i.e. same name as step 3
- go look at your repo in github and you should see your repo reflecting changes in that branch
- make some more changes
https://www.eclipse.org/downloads/packages/eclipse-ide-java-developers/oxygen3a http://www.oracle.com/technetwork/java/javase/downloads/jdk10-downloads-4416644.html