Skip to content

Latest commit

 

History

History
35 lines (32 loc) · 2 KB

File metadata and controls

35 lines (32 loc) · 2 KB

Python Mini-Projects

A collection of simple Python mini-projects to enhance your Python skills. If you're new to Python or want to learn more, this repository is a great place to start.

Steps to Contribute

  1. Select an Issue: Browse the existing issues in the repository and ask to be assigned to one that interests you.
  2. Explore Existing Scripts: Check out the scripts in the projects directory to get an idea of what's already there.
  3. Star this Repository: Show your support by starring this repository.
  4. Fork the Repository: Click the "Fork" button on the python-mini-projects repo page to create your own fork.
  5. Clone Your Fork: Clone your forked repository to your local machine using the following command:
    git clone https://github.com/marknature/python-mini-projects.git
    
  6. Keep Your Fork in Sync: Before making any changes, sync your fork with the original repository to avoid merge conflicts:
    git remote add upstream ""'
    git fetch upstream
    git pull upstream master
    git push
    
    Alternatively, you can use GitHub's syncing feature by clicking "Fetch upstream" on your repo page.
  7. Create a New Branch: Checkout to a new branch (name it according to the issue you're working on):
    git checkout -b branch-name
    
  8. Write Your Code: Create a folder in the projects directory with the same name as the issue. Write your code and add it to the respective folder.
  9. Add a README.md: Don't forget to add a README.md in your folder, following the README_TEMPLATE.
  10. Commit and Push: Add your changes, commit with a descriptive message, and push to your repository:
    git add -A
    git commit -m "Your message"
    git push origin branch-name
    
  11. Create a Pull Request: Go to your fork's GitHub page and create a pull request. Wait for a review from one of us!