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
* Make your changes in a new `git` branch. We use the <ahref="http://nvie.com/posts/a-successful-git-branching-model/">Gitflow branching model</a> so you will have to branch from our develop branch.
42
54
```bash
43
55
git checkout -b my-fix-branch develop
44
56
```
45
57
* Create your patch and include appropriate test cases.
46
-
* Commit your changes and create a descriptive commit message (the commit message is used to generate release notes).
47
-
```bash
48
-
git commit -a
49
-
```
50
58
* Build your changes locally.
51
59
```bash
52
60
grunt
@@ -55,6 +63,10 @@ Before you submit a Pull Request, consider the following guidelines.
55
63
```bash
56
64
grunt test
57
65
```
66
+
* Commit your changes and create a descriptive commit message (the commit message is used to generate release notes).
0 commit comments