| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A collection of easy Python small projects to help you improve your programming skills.
As a Python newbie, I understand the problems that people face when they first begin studying and attempting to understand various Data Science concepts, particularly Python. This project is designed for folks who are just getting started with Python principles and exploring GitHub as "contributors."
My goal is to build a common playground where everyone, from beginners to experts, can learn and share knowledge, and I hope you enjoy your stay here!
Let's "folk-ing" create amazing things together! 👉
Step 1: Star The RepoStar the repo by pressing the topmost-right button to start your wonderful journey
On the GitHub page for this repository, click on the Button "Fork".
⚠️ NOTE: If you're not familiar with Git, using GitHub Desktop Application is a better start. If you choose this method, make sure to download it before continuing reading.
❗❗ Access link to download here.
Learn more about how to clone the remote respository on your local machine using GitHub Desktop here.
Clone the forked repository. Open git bash and type:
git clone https://github.com/<your-github-username>/python-mini-project.gitThis makes a local copy of the repository in your machine.
⚠️ Replace <your-github-username>!
Learn more about forking and cloning a repo.
Always keep your local copy of the repository updated with the original repository. Before making any changes and/or in an appropriate interval, follow the following steps:
Learn more about how to create new branch here and how to fetch and pull origin from/to your local machine here.
Learn more about how to fetch and pull origin from/to your local machine using GitHub Desktop here.
Run the following commands carefully to update your local repository
# If you cloned a while ago, get the latest changes from upstream
git checkout <master>
git pull upstream <master>
# Make a feature branch (Always check your current branch is up to date before creating a new branch from it to avoid merge conflicts)
git checkout -b <branch-name>
#Once you have completed these steps, you are ready to start contributing to the project and creating pull requests.
The folder name should follow the following format "Your_Project_Name_Here". For example: Dice_Stimulator
Learn more how to pull request from your local machine using GitHub Desktop to the main repo here.
Add the changes with git add, git commit:
git add -A
git commit -m "<your message>"Push the code to your repository.
git push origin <branch-name>Go to the GitHub page of your fork, and make a pull request:
Read more about pull requests on the GitHub help pages.
Now wait, until your Pull Request is approved! If there are any conflicts, you will get a notification.
please make sure to add a README.md file that follow the same construction as this template for consistency.
If you have any feedback or ideas to improve this project, feel free to contact me via
| Back | FazBrowse Home | New Git URL |