|
1 | 1 | # pythonprojects
|
2 |
| -hey Everyone! this repo consists of python projects from begineer lever to advanced |
| 2 | +<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> |
| 3 | +[](https://forthebadge.com) |
| 4 | +[](https://forthebadge.com) |
| 5 | +[](https://forthebadge.com) |
| 6 | +[](https://forthebadge.com) |
| 7 | + |
| 8 | +# Python-Mini-Projects |
| 9 | + |
| 10 | +[](#contributors-) |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | +A collection of simple python projects from beginner to Advanced level to enhance your Python skills. |
| 18 | + |
| 19 | +## Steps To Follow |
| 20 | + |
| 21 | +- Select an issue and ask to be _assigned_ to it. |
| 22 | +- Check existing scripts in the Repo |
| 23 | +- **Star** this repository. |
| 24 | +- On the [pythonprojects](https://github.com/sumukhmg/pythonprojects) repo page, click the **Fork** button. |
| 25 | + <br><img src="https://help.github.com/assets/images/help/repository/fork_button.jpg" title="Fork image" width="400"/> |
| 26 | +- **Clone** your forked repository to your local machine. This button will show you the URL to run. |
| 27 | + <br><img src="https://docs.github.com/assets/images/help/repository/code-button.png" title="Code button" width="400"/> |
| 28 | + |
| 29 | + For example, run this command inside your terminal: |
| 30 | + |
| 31 | + ```bash |
| 32 | + git clone https://github.com/<your-github-username>/pythonprojects.git |
| 33 | + ``` |
| 34 | + |
| 35 | + **Replace \<your-github-username\>!** |
| 36 | + |
| 37 | + Learn more about |
| 38 | + [forking](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) and |
| 39 | + [cloning a repo] |
| 40 | + (https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository). |
| 41 | + |
| 42 | +- If you run into a **merge conflict**, you have to resolve the conflict. There are a lot of guides online, or you can try this one by [opensource.com](https://opensource.com/article/20/4/git-merge-conflict). |
| 43 | + |
| 44 | +- Checkout to development branch (*name your branch according to the issue name*). |
| 45 | + |
| 46 | + ```bash |
| 47 | + git checkout -b <branch-name> |
| 48 | + ``` |
| 49 | + Write your code and add to the respective folder in the projects directory, locally. |
| 50 | + |
| 51 | + Add the changes with `git add`, `git commit` ([write a good commit message](https://chris.beams.io/posts/git-commit/), if possible): |
| 52 | + |
| 53 | + ```bash |
| 54 | + git add -A |
| 55 | + git commit -m "<your message>" |
| 56 | + ``` |
| 57 | + |
| 58 | +- Push the code _to your repository_. |
| 59 | + |
| 60 | + ```bash |
| 61 | + git push origin <branch-name> |
| 62 | + ``` |
| 63 | + |
| 64 | + Go to the GitHub page of _your fork_, and |
| 65 | + **make a pull request**: |
| 66 | + |
| 67 | +  |
| 68 | + |
| 69 | + Read more about pull requests on the [GitHub help pages](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request). |
| 70 | +- Now wait, until one of us *reviews your Pull Request*! If there are any conflicts, you will get a notification. |
| 71 | + |
| 72 | +- ## Connect On Social media |
| 73 | + |
| 74 | +[Twitter](https://img.shields.io/twitter/follow/sumukhmg?style=social) |
| 75 | +[Linkedin](https://www.linkedin.com/in/sumukh-mg/) |
| 76 | +[GitHub](https://img.shields.io/github/followers/sumukhmg?style=social) |
| 77 | + |
0 commit comments