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: .github/CONTRIBUTING.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,10 +72,10 @@ Great question! The short version goes like this:
72
72
73
73

74
74
75
-
***Switch to the correct branch** - switch to the `v8/contrib` branch
75
+
***Switch to the correct branch** - switch to the `v9/contrib` branch
76
76
***Build** - build your fork of Umbraco locally as described in [building Umbraco from source code](BUILD.md)
77
77
***Change** - make your changes, experiment, have fun, explore and learn, and don't be afraid. We welcome all contributions and will [happily give feedback](#questions)
78
-
***Commit** - done? Yay! 🎉 **Important:** create a new branch now and name it after the issue you're fixing, we usually follow the format: `temp-12345`. This means it's a temporary branch for the particular issue you're working on, in this case `12345`. When you have a branch, commit your changes. Don't commit to `v8/contrib`, create a new branch first.
78
+
***Commit** - done? Yay! 🎉 **Important:** create a new branch now and name it after the issue you're fixing, we usually follow the format: `temp-12345`. This means it's a temporary branch for the particular issue you're working on, in this case `12345`. When you have a branch, commit your changes. Don't commit to `v9/contrib`, create a new branch first.
79
79
***Push** - great, now you can push the changes up to your fork on GitHub
80
80
***Create pull request** - exciting! You're ready to show us your changes (or not quite ready, you just need some feedback to progress - you can now make use of GitHub's draft pull request status, detailed [here](https://github.blog/2019-02-14-introducing-draft-pull-requests/)). GitHub has picked up on the new branch you've pushed and will offer to create a Pull Request. Click that green button and away you go.
81
81
@@ -173,7 +173,7 @@ To find the general areas for something you're looking to fix or improve, have a
173
173
174
174
### Which branch should I target for my contributions?
175
175
176
-
We like to use [Gitflow as much as possible](https://jeffkreeftmeijer.com/git-flow/), but don't worry if you are not familiar with it. The most important thing you need to know is that when you fork the Umbraco repository, the default branch is set to something, usually `v8/contrib`. If you are working on v8, this is the branch you should be targetting. For v7 contributions, please target 'v7/dev'.
176
+
We like to use [Gitflow as much as possible](https://jeffkreeftmeijer.com/git-flow/), but don't worry if you are not familiar with it. The most important thing you need to know is that when you fork the Umbraco repository, the default branch is set to something, usually `v9/contrib`. If you are working on v9, this is the branch you should be targetting. For v8 contributions, please target 'v8/contrib'
177
177
178
178
Please note: we are no longer accepting features for v7 but will continue to merge bug fixes as and when they arise.
179
179
@@ -199,10 +199,10 @@ Then when you want to get the changes from the main repository:
199
199
200
200
```
201
201
git fetch upstream
202
-
git rebase upstream/v8/contrib
202
+
git rebase upstream/v9/contrib
203
203
```
204
204
205
-
In this command we're syncing with the `v8/contrib` branch, but you can of course choose another one if needed.
205
+
In this command we're syncing with the `v9/contrib` branch, but you can of course choose another one if needed.
206
206
207
207
(More info on how this works: [http://robots.thoughtbot.com/post/5133345960/keeping-a-git-fork-updated](http://robots.thoughtbot.com/post/5133345960/keeping-a-git-fork-updated))
0 commit comments