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
{{ message }}
This repository was archived by the owner on Dec 22, 2023. It is now read-only.
@@ -32,3 +31,52 @@ Scripts in python that scrape the web, create a bot or use an API to solve a pro
32
31
```
33
32
34
33
**Replace \<your-github-username\>!**
34
+
35
+
Learn more about [forking](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) and [cloning a repo](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository).
36
+
- Before you make any changes, [keep your fork in sync](https://www.freecodecamp.org/news/how-to-sync-your-fork-with-the-original-git-repository/) to avoid merge conflicts:
- 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).
46
+
47
+
- Checkout to development branch (*name your branch according to the issue name*).
48
+
49
+
```basg
50
+
git checkout -b <branch-name>
51
+
```
52
+
53
+
- Create a folder in [projects directory](https://github.com/chavarera/python-mini-projects/tree/master/projects) according to issue name.
54
+
- Write your code and add to the respective folder in the projects directory, locally.
55
+
- 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)
56
+
- Add the changes with `git add`, `git commit` ([write a good commit message](https://chris.beams.io/posts/git-commit/), if possible):
57
+
58
+
```bash
59
+
git add -A
60
+
git commit -m "<your message>"
61
+
```
62
+
63
+
- Push the code *to your repository*.
64
+
65
+
```bash
66
+
git push origin <branch-name>
67
+
```
68
+
69
+
- 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).
74
+
- Now wait, until one of us *reviews your Pull Request*! If there are any conflicts, you will get a notification.
0 commit comments