Skip to content

Commit da15986

Browse files
authored
Update CONTRIBUTING.md
1 parent 84c96ed commit da15986

1 file changed

Lines changed: 39 additions & 41 deletions

File tree

CONTRIBUTING.md

Lines changed: 39 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to SpringUserFramework
22

3-
Thank you for considering contributing to SpringUserFramework! We appreciate your time and effort in improving our project. The following guidelines will help you navigate the contribution process.
3+
Thank you for considering contributing to SpringUserFramework! We appreciate your time and effort in improving our project. The following guidelines will help you navigate the contribution process.
44

55
## Table of Contents
66

@@ -22,94 +22,94 @@ Thank you for considering contributing to SpringUserFramework! We appreciate you
2222

2323
## Code of Conduct
2424

25-
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms.
25+
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms.
2626

2727
## Getting Started
2828

2929
### Forking the Repository
3030

31-
To contribute to SpringUserFramework, begin by forking the repository to your GitHub account. This creates a personal copy of the project where you can make changes without affecting the original repository.
31+
To contribute to SpringUserFramework, begin by forking the repository to your GitHub account. This creates a personal copy of the project where you can make changes without affecting the original repository.
3232

33-
1. Navigate to the [SpringUserFramework repository](https://github.com/devondragon/SpringUserFramework/).
34-
2. Click the "Fork" button in the upper right corner.
33+
1. Navigate to the [SpringUserFramework repository](https://github.com/devondragon/SpringUserFramework/).
34+
2. Click the "Fork" button in the upper right corner.
3535

3636
### Cloning Your Fork
3737

38-
Next, clone your fork to your local machine to start making changes.
38+
Next, clone your fork to your local machine to start making changes.
3939

4040
```bash
4141
git clone https://github.com/your-username/SpringUserFramework.git
4242
cd SpringUserFramework
4343
```
44-
44+
4545

4646
### Setting Up the Upstream Remote
4747

48-
To keep your fork synchronized with the original repository, add it as an upstream remote:
48+
To keep your fork synchronized with the original repository, add it as an upstream remote:
4949

5050
```bash
5151
git remote add upstream https://github.com/devondragon/SpringUserFramework.git
5252
```
53-
5453

55-
This setup allows you to fetch updates from the main repository and incorporate them into your fork.
54+
55+
This setup allows you to fetch updates from the main repository and incorporate them into your fork.
5656

5757
## Working on Issues
5858

59-
We use GitHub Issues to track bugs and feature requests. Before starting work, please check existing issues to avoid duplication.
59+
We use GitHub Issues to track bugs and feature requests. Before starting work, please check existing issues to avoid duplication.
6060

61-
1. Browse the [Issues](https://github.com/devondragon/SpringUserFramework/issues) to find something you'd like to work on.
62-
2. Comment on the issue to let others know you're working on it.
61+
1. Browse the [Issues](https://github.com/devondragon/SpringUserFramework/issues) to find something you'd like to work on.
62+
2. Comment on the issue to let others know you're working on it.
6363

6464
### Creating a Feature Branch
6565

66-
For each issue, create a new branch in your local repository. This keeps your changes organized and makes it easier to manage multiple contributions.
66+
For each issue, create a new branch in your local repository. This keeps your changes organized and makes it easier to manage multiple contributions.
6767

68-
1. Fetch the latest changes from the upstream repository:
68+
1. Fetch the latest changes from the upstream repository:
6969

7070
```bash
7171
git fetch upstream
7272
```
73-
7473

75-
2. Check out the branch associated with the issue:
74+
75+
2. Check out the branch associated with the issue:
7676

7777
```bash
7878
git checkout upstream/branch-name
7979
```
80-
8180

82-
3. Create a new branch off of the issue branch:
81+
82+
3. Create a new branch off of the issue branch:
8383

8484
```bash
8585
git checkout -b your-feature-branch
8686
```
87-
87+
8888

8989
### Making Changes
9090

91-
Make your desired changes in your local repository. Ensure that your code adheres to the project's coding standards and includes appropriate documentation.
91+
Make your desired changes in your local repository. Ensure that your code adheres to the project's coding standards and includes appropriate documentation.
9292

9393
### Committing Changes
9494

95-
Commit your changes with clear and descriptive messages.
95+
Commit your changes with clear and descriptive messages.
9696

9797
```bash
9898
git add .
9999
git commit -m "Brief description of your changes"
100100
```
101-
102101

103-
Follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for commit messages.
102+
103+
Follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for commit messages.
104104

105105
### Pushing Changes
106106

107-
Push your feature branch to your fork on GitHub:
107+
Push your feature branch to your fork on GitHub:
108108

109109
```bash
110110
git push origin your-feature-branch
111111
```
112-
112+
113113

114114

115115
## Unit Tests and Test Coverage
@@ -138,15 +138,15 @@ We may add code coverage reporting tools in the future to help enforce this, but
138138

139139
## Submitting a Pull Request
140140

141-
Once your changes are pushed to your fork, submit a pull request (PR) to the original repository:
141+
Once your changes are pushed to your fork, submit a pull request (PR) to the original repository:
142142

143-
1. Navigate to your fork on GitHub.
144-
2. Click the "Compare & pull request" button next to your feature branch.
145-
3. Ensure the base fork is `devondragon/SpringUserFramework` and the base branch is the issue branch you're addressing.
146-
4. Provide a clear title and description for your PR, referencing the issue number it addresses.
147-
5. Click "Create pull request."
143+
1. Navigate to your fork on GitHub.
144+
2. Click the "Compare & pull request" button next to your feature branch.
145+
3. Ensure the base fork is `devondragon/SpringUserFramework` and the base branch is the issue branch you're addressing.
146+
4. Provide a clear title and description for your PR, referencing the issue number it addresses.
147+
5. Click "Create pull request."
148148

149-
Your PR will be reviewed by the maintainers. Please be responsive to feedback and willing to make adjustments as needed.
149+
Your PR will be reviewed by the maintainers. Please be responsive to feedback and willing to make adjustments as needed.
150150

151151

152152
## Contributing to the Demo Frontend
@@ -215,20 +215,18 @@ To test updates to the library before submitting a pull request, follow these st
215215

216216
## Code Style and Standards
217217

218-
Please adhere to the following coding standards:
218+
Please adhere to the following coding standards:
219219

220-
- Follow the [Google Java Style Guide](https://google.github.io/styleguide/javaguide.html) for Java code.
221-
- Use meaningful variable and method names.
222-
- Write concise and clear comments where necessary.
220+
- Follow the [Google Java Style Guide](https://google.github.io/styleguide/javaguide.html) for Java code.
221+
- Use meaningful variable and method names.
222+
- Write concise and clear comments where necessary.
223223

224-
Consistent code style helps maintain readability and ease of maintenance.
224+
Consistent code style helps maintain readability and ease of maintenance.
225225

226226
## Testing
227227

228-
Ensure that your changes do not break existing tests and include new tests as appropriate. Run all tests before submitting a PR:
228+
Ensure that your changes do not break existing tests and include new tests as appropriate. Run all tests before submitting a PR:
229229

230230
```bash
231231
./gradlew test
232232
```
233-
234-

0 commit comments

Comments
 (0)