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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,11 @@ Contributing to Apache Shiro
3
3
4
4
Summary
5
5
-------
6
+
6
7
This document covers how to contribute to the Apache Shiro project. These instructions assume you have a GitHub.com account, so if you don't have one you will have to create one. Your proposed code changes will be published to your own fork of the Apache Shiro project and you will submit a Pull Request for your changes to be added.
7
8
8
9
_Let's get started!!!_
9
10
10
-
11
11
Fork the code
12
12
-------------
13
13
@@ -29,7 +29,6 @@ $ git fetch upstream
29
29
$ git rebase upstream/main
30
30
```
31
31
32
-
33
32
Making changes
34
33
--------------
35
34
@@ -50,7 +49,6 @@ $ git commit -a -m "descriptive commit message for your changes"
50
49
> The `-b` specifies that you want to create a new branch called `feature_x`. You only specify `-b` the first time you checkout because you are creating a new branch.
51
50
> Once the `feature_x` branch exists, you can later switch to it with only `git checkout feature_x`.
52
51
53
-
54
52
Rebase `feature_x` to include updates from `upstream/main`
@@ -100,7 +97,6 @@ To initiate the pull request, do the following:
100
97
If you are requested to make modifications to your proposed changes, make the changes locally on your `feature_x` branch, re-push the `feature_x` branch to your fork.
101
98
The existing pull request should automatically pick up the change and update accordingly.
0 commit comments