File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Contributing to Git and GitHub Documentation
2
+
3
+ Thank you for considering contributing to the Git and GitHub documentation! Your help is essential in making this guide better for everyone.
4
+
5
+ ## How to Contribute
6
+
7
+ ### Reporting Issues
8
+ - ** Search Existing Issues** : Before reporting, check if the issue already exists.
9
+ - ** Create a New Issue** : Provide a clear title and description. Include steps to reproduce the issue if applicable.
10
+
11
+ ### Submitting Pull Requests
12
+ 1 . ** Fork the Repository**
13
+ 2 . ** Clone Your Fork**
14
+ ``` bash
15
+ git clone https://github.com/your-username/git-and-github.git
16
+ ```
17
+ 3 . ** Create a Branch**
18
+ ``` bash
19
+ git checkout -b feature-branch
20
+ ```
21
+ 4 . ** Make Your Changes** : Ensure your code follows the existing style and conventions.
22
+ 5 . ** Commit Your Changes**
23
+ ``` bash
24
+ git commit -m " Description of changes"
25
+ ```
26
+ 6 . ** Push to Your Fork**
27
+ ``` bash
28
+ git push origin feature-branch
29
+ ```
30
+ 7 . ** Create a Pull Request** : Go to the repository and click on "New Pull Request". Describe your changes thoroughly.
31
+
32
+ ### Code of Conduct
33
+ Please adhere to the [ Code of Conduct] ( CODE_OF_CONDUCT.md ) to ensure a welcoming environment for all contributors.
34
+
35
+ ## Additional Resources
36
+ - ** Documentation Style Guide** : Follow our style guide to maintain consistency.
37
+ - ** Community Discussions** : Join the conversation on our discussion board for feedback and support.
38
+
39
+ Thank you for contributing! Your efforts help improve this resource for everyone.
You can’t perform that action at this time.
0 commit comments