You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -46,11 +46,15 @@ If you are new to Github and open source then, visit [here.](https://towardsdata
46
46
git pull upstream master
47
47
git push
48
48
```
49
-
- 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).
49
+
50
+
- 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).
51
+
50
52
- Checkout to development branch (*name your branch according to the issue name*).
53
+
51
54
```basg
52
55
git checkout -b <branch-name>
53
56
```
57
+
54
58
- Create a folder in [projects directory](https://github.com/chavarera/python-mini-projects/tree/master/projects) according to issue name.
55
59
- Write your code and add to the respective folder in the projects directory, locally.
56
60
- Don't forget to add a `README.md` in your folder, according to the [README_TEMPLATE.](https://github.com/chavarera/python-mini-projects/blob/master/README_TEMPLATE.md)
@@ -60,16 +64,19 @@ If you are new to Github and open source then, visit [here.](https://towardsdata
60
64
git add -A
61
65
git commit -m "<your message>"
62
66
```
67
+
63
68
- Push the code *to your repository*.
69
+
64
70
```bash
65
71
git push origin <branch-name>
66
72
```
73
+
67
74
- Go to the GitHub page of _your fork_, and **make a pull request**:
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).
72
-
- Now wait, until one of us *reviews your Pull Request*! If there are any conflicts, you will get a notification.
79
+
- Now wait, until one of us *reviews your Pull Request*! If there are any conflicts, you will get a notification.
24 | [Save Screenshot of given Website](https://github.com/chavarera/python-mini-projects/tree/master/projects/Snapshot_of_given_website) | [m044de](https://github.com/m044de/)
110
117
25 | [Split files using no of lines](https://github.com/chavarera/python-mini-projects/tree/master/projects/Split_File) | [phileinSophos](https://github.com/phileinSophos/)
111
-
26 | [Encode and decode text using key](https://github.com/chavarera/python-mini-projects/tree/master/projects/Create_script_to_encode_and_decode_text) | [Gaodong](https://github.com/xlgd)
118
+
26 | [Encrypt and decrypt text](https://github.com/chavarera/python-mini-projects/tree/master/projects/Encrypt_and_decrypt_text) | [Gaodong](https://github.com/xlgd)
112
119
27 | [Captures screenshot at regular interval of time](https://github.com/chavarera/python-mini-projects/tree/master/projects/capture_screenshot) | [d33pc](https://github.com/d33pc/)
42 | [Text To speech(mp3)](https://github.com/chavarera/python-mini-projects/tree/master/projects/Text_to_speech) | [Sergej Dikun](https://github.com/Serhazor)
128
-
43 | [Image format conversio)](https://github.com/chavarera/python-mini-projects/tree/master/projects/convert_Imgs) | [Ramon Ferreira](https://github.com/ramonfsk)
135
+
43 | [Image format conversion](https://github.com/chavarera/python-mini-projects/tree/master/projects/convert_Imgs) | [Ramon Ferreira](https://github.com/ramonfsk)
129
136
44 | [Save random article from wikipedia](https://github.com/chavarera/python-mini-projects/tree/master/projects/Random_Wikipedia_Article) | [Rakshit Puri](https://github.com/skate1512)
0 commit comments