Skip to content

Commit 66fda43

Browse files
committed
.
1 parent 81fe10a commit 66fda43

File tree

4 files changed

+76
-1
lines changed

4 files changed

+76
-1
lines changed

README.md

+76-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,77 @@
11
# 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+
[![forthebadge](https://forthebadge.com/images/badges/built-by-developers.svg)](https://forthebadge.com)
4+
[![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com)
5+
[![forthebadge](https://forthebadge.com/images/badges/built-with-swag.svg)](https://forthebadge.com)
6+
[![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com)
7+
8+
# Python-Mini-Projects
9+
10+
[![All Contributors](https://img.shields.io/github/contributors/sumukhmg/pythonprojects)](#contributors-)
11+
![Issues](https://img.shields.io/github/issues/sumukhmg/pythonprojects)
12+
![Pull Requests](https://img.shields.io/github/issues-pr/sumukhmg/pythonprojects?)
13+
![Forks](https://img.shields.io/github/forks/sumukhmg/pythonprojects)
14+
![Stars](https://img.shields.io/github/stars/sumukhmg/pythonprojects)
15+
![License](https://img.shields.io/github/license/sumukhmg/pythonprojects)
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+
![pull request image](https://help.github.com/assets/images/help/pull_requests/choose-base-and-compare-branches.png)
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+
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)