Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Hello World Java Project

This project is a simple "Hello, World!" Java application created to practice Git commands and workflow using GitHub. It serves as a test project to learn version control operations such as committing, branching, merging, and using pull requests.

## Purpose

- **Java Practice**: Write a basic Java program that outputs "Hello, World!" to the console.
- **Git Practice**: Experiment with essential Git commands and workflows:
- Initializing repositories
- Adding and committing changes
- Creating branches and merging them
- Using GitHub for pull requests and collaboration

git status # Check the status of your repository
git add . # Stage all changes
git commit -m "Initial commit" # Commit with a message
git branch feature-branch # Create a new branch
git checkout feature-branch # Switch to the new branch
git merge feature-branch # Merge feature branch into master
git push # Push changes to GitHub