Java basic concepts by examples
- Data structures by examples
- Design Pattersn by examples
- Java version wise changes by examples
- Miscellaneous examples
git config --global user.name "FirstName LastName"
git config --global user.email "emailaddress"
If you want to simply clone this empty repository then run this command in your terminal.
git clone https://github.com/shreekanth-patil/Java_Leanings.git
If you already have code ready to be pushed to this repository then run this in your terminal.
cd existing-project
git init
git add --all
git commit -m "Initial Commit"
git remote add origin https://github.com/shreekanth-patil/Java_Leanings.git
git push -u origin master
If your code is already tracked by Git then set this repository as your "origin" to push to.
cd existing-project
git remote set-url origin https://github.com/shreekanth-patil/Java_Leanings.git
git push -u origin master