Files
Web-Development/Week-02/Day_05/README.md
2026-02-23 23:35:45 +05:30

1.4 KiB

Key Concepts Learned

  1. Repositories: Creating a project container on GitHub to track history.
  2. Branching: Creating an isolated environment (readme-edits) to test new ideas without affecting the main code.
  3. Commits: Saving "checkpoints" in the project with descriptive messages.
  4. Pull Requests (PR): Proposing changes to the project and starting a discussion before merging.
  5. Merging: Successfully incorporating changes from a branch back into the master project.

To complete this task, I performed the following steps:

  • Initialized Repository: Created the hello-world repository.
  • Created Branch: Created a branch named readme-edits to follow the branching strategy.
  • Modified Content: Updated the README.md with professional information.
  • Committed Changes: Used the Conventional Commits format for the commit message.
  • Opened Pull Request: Documented the changes and submitted them for review.
  • Merged PR: Finalized the changes into the main branch.

During this task, I practiced the following CLI commands:

# Clone the repository locally
git clone https://github.com/[username]/hello-world.git

# Create a new branch
git checkout -b readme-edits

# Stage changes
git add .

# Commit changes
git commit -m "docs: add intern profile and workflow log"

# Push to GitHub
git push origin readme-edits