Java EE Development Class - January

* Git tool & basics commands
* Data types & Variables

Getting Started with Git

Github first Config

  • git config --global user.name "githubUsername"
  • git config --global user.email "youremail@gmail.com"

Github Clone of Repository

Github push project to repo

Github Update of Repo

  • git add * (or single file which is updated)
  • git commit -m "commit Message"
  • git push -u origin master