Skip to content

Commit 6668c93

Browse files
Merge pull request #4 from kshitizsaini113/master
Changes
2 parents fa9209e + d3844ca commit 6668c93

File tree

2 files changed

+65
-5
lines changed

2 files changed

+65
-5
lines changed

CONTRIBUTING.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
## Open for Contribution
2+
3+
1. Fork the repository and then clone it. For cloning command is:
4+
```
5+
$ git clone "https://github.com/<username>/30DaysOfJava"
6+
```
7+
8+
3. Do changes and stage them.
9+
```
10+
$ git add <filename>
11+
```
12+
13+
4. Commit you changes with a commit message.
14+
```
15+
$ git commit -m "<message>"
16+
```
17+
18+
5. Push changes to your forked repository
19+
```
20+
$ git push -u origin branchname
21+
```
22+
6. Create a pull request to the upstream repository.
23+
24+
## Synchronize forked repository with Main repository (Needed if creating a branch)
25+
26+
1. Create upstream as our repository
27+
```
28+
$ git remote add main "https://github.com/dotQuestionmark/30DaysOfJava"
29+
```
30+
31+
2. Fetch changes from main repository
32+
```
33+
$ git fetch main
34+
```
35+
36+
3. Merge changes after being fetched
37+
```
38+
$ git merge main/master
39+
```
40+
41+
5. Push changes to your forked repository
42+
```
43+
$ git push -f origin master
44+
```

README.md

+21-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
1-
# java-for-dummies
1+
# Java-for-dummies
2+
23
Keep the track of tutorial files uploaded daywise and learn java
3-
# Setting up JDK
4+
5+
Contributions guidelines can be found [here.](CONTRIBUTING.md)
6+
7+
## Setting up JDK
8+
9+
```
410
https://www.oracle.com/java/technologies/javase-jdk13-downloads.html
11+
```
12+
513
1) visit this site and download the latest version of jdk
614
2) Second go to you system enviorment settings and copy paste the past of your jdk folder till bin there
715
3) to check run java command on command promt if it runs you are good to goo
8-
# Setting up an IDE (ECLIPSE)
16+
17+
## Setting up an IDE (ECLIPSE)
18+
919
I personally prefer ECPLISE IDE
20+
```
1021
https://www.eclipse.org/downloads/
22+
```
1123
1) visit this website and download the ide for free
1224
2) while downloading choose java devloper option that would be sufficient for beginner level
1325
3) After downloading go to new and select new project (JAVA)
1426
4) Create a new java class with a specific pakage name
1527
5 ) start coding you are good to go
16-
# java ?
28+
29+
## Java ?
30+
1731
Java is a general-purpose programming language that is class-based, object-oriented, and designed to have as few implementation dependencies as possible.
18-
# Stable release: Java SE 14 / March 17, 2020;
1932

33+
### Stable release: Java SE 14 / March 17, 2020;
34+
35+
All the projects are licenced under [GNU GENERAL PUBLIC LICENSE](LICENSE)

0 commit comments

Comments
 (0)