Skip to content

shreekanth-patil/Java_Leanings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java_Leanings by - @auther - Shreekanth Patil

Java basic concepts by examples

  1. Data structures by examples
  2. Design Pattersn by examples
  3. Java version wise changes by examples
  4. Miscellaneous examples

Configure Git for the first time

git config --global user.name "FirstName LastName"
git config --global user.email "emailaddress"

Working with your repository

I just want to clone this repository

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

My code is ready to be pushed

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

My code is already tracked by Git

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

About

Java basic concepts with sample examples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages