Efficiently merge handle parallel feature branches in SFDX2019 Community Moderator ElectionHow to use GIT on multi dev environmentJenkins + Force.com Migration Tool - REQUEST_RUNNING_TOO_LONGDo Salesforce DX scratch orgs allow a namespace to be nominated?SFDX Development Process - Managed Package and VCSSFDX pull sample data from dev orgGitHub Conflict Resolution issueIgnore files when force:source:convertScratch Org missing from Salesforce DX org listDeploy CPQ related changes to production with SFDXStep-by-step guide to migrate existing managed package to DX
How long to clear the 'suck zone' of a turbofan after start is initiated?
How does the UK government determine the size of a mandate?
Overloading istream>> to read comma-separated input
Nautlius: add mouse right-click action to compute MD5 sum
Term for the "extreme-extension" version of a straw man fallacy?
Lay out the Carpet
What can we do to stop prior company from asking us questions?
How to write papers efficiently when English isn't my first language?
What happens if you roll doubles 3 times then land on "Go to jail?"
Are student evaluations of teaching assistants read by others in the faculty?
CREATE opcode: what does it really do?
Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?
How do I go from 300 unfinished/half written blog posts, to published posts?
Is this version of a gravity generator feasible?
What is the difference between "behavior" and "behaviour"?
What does "I’d sit this one out, Cap," imply or mean in the context?
Trouble understanding the speech of overseas colleagues
System.debug(JSON.Serialize(o)) Not longer shows full string
What does this 7 mean above the f flat
Pole-zeros of a real-valued causal FIR system
Avoiding estate tax by giving multiple gifts
What are the ramifications of creating a homebrew world without an Astral Plane?
How did Arya survive the stabbing?
What's the purpose of "true" in bash "if sudo true; then"
Efficiently merge handle parallel feature branches in SFDX
2019 Community Moderator ElectionHow to use GIT on multi dev environmentJenkins + Force.com Migration Tool - REQUEST_RUNNING_TOO_LONGDo Salesforce DX scratch orgs allow a namespace to be nominated?SFDX Development Process - Managed Package and VCSSFDX pull sample data from dev orgGitHub Conflict Resolution issueIgnore files when force:source:convertScratch Org missing from Salesforce DX org listDeploy CPQ related changes to production with SFDXStep-by-step guide to migrate existing managed package to DX
Imagine a team of 5 developers using DX scratch orgs (using Salesforce' Falcon Template) for working on multiple features in parallel.
They start from a clean packaging org and a clean Git master. Every developer creates a feature branch for her user story and works on it.
- When do they commit and push?
- When do they pull?
- When do they recreate their scratch orgs?
Those are not scratch org questions or on how to version in general. It's about keeping developers in sync and prevent a big merging orgy when everybody is done.
- Should everybody pull and recreate and merge as soon as one story is
done and merged? - How would that look?
- Is the recommended approach documented anywhere?
salesforcedx versioning version-control ci feature-management
add a comment |
Imagine a team of 5 developers using DX scratch orgs (using Salesforce' Falcon Template) for working on multiple features in parallel.
They start from a clean packaging org and a clean Git master. Every developer creates a feature branch for her user story and works on it.
- When do they commit and push?
- When do they pull?
- When do they recreate their scratch orgs?
Those are not scratch org questions or on how to version in general. It's about keeping developers in sync and prevent a big merging orgy when everybody is done.
- Should everybody pull and recreate and merge as soon as one story is
done and merged? - How would that look?
- Is the recommended approach documented anywhere?
salesforcedx versioning version-control ci feature-management
add a comment |
Imagine a team of 5 developers using DX scratch orgs (using Salesforce' Falcon Template) for working on multiple features in parallel.
They start from a clean packaging org and a clean Git master. Every developer creates a feature branch for her user story and works on it.
- When do they commit and push?
- When do they pull?
- When do they recreate their scratch orgs?
Those are not scratch org questions or on how to version in general. It's about keeping developers in sync and prevent a big merging orgy when everybody is done.
- Should everybody pull and recreate and merge as soon as one story is
done and merged? - How would that look?
- Is the recommended approach documented anywhere?
salesforcedx versioning version-control ci feature-management
Imagine a team of 5 developers using DX scratch orgs (using Salesforce' Falcon Template) for working on multiple features in parallel.
They start from a clean packaging org and a clean Git master. Every developer creates a feature branch for her user story and works on it.
- When do they commit and push?
- When do they pull?
- When do they recreate their scratch orgs?
Those are not scratch org questions or on how to version in general. It's about keeping developers in sync and prevent a big merging orgy when everybody is done.
- Should everybody pull and recreate and merge as soon as one story is
done and merged? - How would that look?
- Is the recommended approach documented anywhere?
salesforcedx versioning version-control ci feature-management
salesforcedx versioning version-control ci feature-management
asked yesterday
Robert SösemannRobert Sösemann
13.1k1177222
13.1k1177222
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
I'm going to have to answer the questions out of order for them to make sense, and much of this is anecdotal at this point, but we've been doing this for a couple of years now, so I hope that this answer will be useful.
Is the recommended approach documented anywhere?
There are several competing theories on which way is the "best," and it's not related just to Salesforce, but any team that deals with git or another version control system. Salesforce only recommends that we use git, but doesn't prescribe a specific pattern, as far as I'm aware.
Should everybody pull and recreate and merge as soon as one story is done and merged?
Depending on the cadence of the team, this is more likely to be disruptive than helpful. There's a fairly simple way to handle this situation, which I'll outline below.
When do they recreate their scratch orgs?
Whenever they feel like it. You can do this one per story, once per feature, every time it expires, etc. Assuming all of the code is in your source of truth, it shouldn't matter.
When do they commit and push?
Commit periodically to have "backups" in case things go wrong, and push (preferably with a "squash") when it's ready to move on to the next branch.
When do they pull?
Immediately before branching or merging.
How would that look?
After a lot of painful experiences, we've come up with this process in general. Starting from the point where there's a new story to be implemented...
The repo should be organized with a master branch, a staging and/or test branch (for deployment to a master testing sandbox), and one branch per story or feature. Start by going to the "dev" branch, whatever that means for your org, pull to make sure you have the latest copy, then create a new branch to work in.
Developers then push the current state of affairs to a Scratch Org, and begin development using their preferred method. Periodically commit so you can fix mistakes if they happen or if your org expires, etc.
Once the story is complete, go back to the "dev" branch, pull again, switch back to the story branch, and merge the dev branch in to the story branch. This brings it up to date and will let you know of any merge conflicts.
Resolve any conflicts, commit again, and then merge/pull request back in to the dev branch. At this point, the dev branch should be good for testing and deployment. Finally, when deploying to production, a similar pull, merge, resolve conflicts (which ideally should not happen), and merge again cycle should happen.
Once everything is fully merged to production, you can delete the story branches to save space and optimize performance.
add a comment |
There are numerous strategies for doing so (So, there is no 1 good answer), however, here are a few resources that can help answers some if not all those questions based on your needs:
GitFlow Examples
These examples are using the default configuration with GitVersion. Which is continuous deployment mode for develop and continuous delivery mode for all other branches.
Feature Branches:

GitHub Flow a nutshell:
- Update master to latest upstream code
- Create a feature branch git checkout -b myFeatureBranch
- Do the feature/work (Spawn Scratch Orgs to develop/test features)
- Push feature branch to origin
- Create pull request from origin/ -> upstream/master
- Review, fix raised comments, merge your PR or even better, get someone else to.
The main rule of GitHub Flow is that master should always be
deployable. GitHub Flow allows and encourages continuous delivery.
For a more verbose description of each step, you can refer to Understanding the GitHub flow
add a comment |
Our currently workflow:
- git checkout -b feature/sales-api
- git commit add .
- git commit -am ""
- git fetch origin
- git rebase origin master
Once is done, rebase your branch to get the newest version of master, then:
- sfdx package:version:create....
Actually we have more than one package in a project. Particularly, I don't like this approach, because if I have only one package by repository we could automate everything.
Eg. after commit on develop/ build a version and install in the UAT.
after commit on master/ build a new version/ update the release doc and install in production.
(Currently we have 35 packages)
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "459"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f255333%2fefficiently-merge-handle-parallel-feature-branches-in-sfdx%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm going to have to answer the questions out of order for them to make sense, and much of this is anecdotal at this point, but we've been doing this for a couple of years now, so I hope that this answer will be useful.
Is the recommended approach documented anywhere?
There are several competing theories on which way is the "best," and it's not related just to Salesforce, but any team that deals with git or another version control system. Salesforce only recommends that we use git, but doesn't prescribe a specific pattern, as far as I'm aware.
Should everybody pull and recreate and merge as soon as one story is done and merged?
Depending on the cadence of the team, this is more likely to be disruptive than helpful. There's a fairly simple way to handle this situation, which I'll outline below.
When do they recreate their scratch orgs?
Whenever they feel like it. You can do this one per story, once per feature, every time it expires, etc. Assuming all of the code is in your source of truth, it shouldn't matter.
When do they commit and push?
Commit periodically to have "backups" in case things go wrong, and push (preferably with a "squash") when it's ready to move on to the next branch.
When do they pull?
Immediately before branching or merging.
How would that look?
After a lot of painful experiences, we've come up with this process in general. Starting from the point where there's a new story to be implemented...
The repo should be organized with a master branch, a staging and/or test branch (for deployment to a master testing sandbox), and one branch per story or feature. Start by going to the "dev" branch, whatever that means for your org, pull to make sure you have the latest copy, then create a new branch to work in.
Developers then push the current state of affairs to a Scratch Org, and begin development using their preferred method. Periodically commit so you can fix mistakes if they happen or if your org expires, etc.
Once the story is complete, go back to the "dev" branch, pull again, switch back to the story branch, and merge the dev branch in to the story branch. This brings it up to date and will let you know of any merge conflicts.
Resolve any conflicts, commit again, and then merge/pull request back in to the dev branch. At this point, the dev branch should be good for testing and deployment. Finally, when deploying to production, a similar pull, merge, resolve conflicts (which ideally should not happen), and merge again cycle should happen.
Once everything is fully merged to production, you can delete the story branches to save space and optimize performance.
add a comment |
I'm going to have to answer the questions out of order for them to make sense, and much of this is anecdotal at this point, but we've been doing this for a couple of years now, so I hope that this answer will be useful.
Is the recommended approach documented anywhere?
There are several competing theories on which way is the "best," and it's not related just to Salesforce, but any team that deals with git or another version control system. Salesforce only recommends that we use git, but doesn't prescribe a specific pattern, as far as I'm aware.
Should everybody pull and recreate and merge as soon as one story is done and merged?
Depending on the cadence of the team, this is more likely to be disruptive than helpful. There's a fairly simple way to handle this situation, which I'll outline below.
When do they recreate their scratch orgs?
Whenever they feel like it. You can do this one per story, once per feature, every time it expires, etc. Assuming all of the code is in your source of truth, it shouldn't matter.
When do they commit and push?
Commit periodically to have "backups" in case things go wrong, and push (preferably with a "squash") when it's ready to move on to the next branch.
When do they pull?
Immediately before branching or merging.
How would that look?
After a lot of painful experiences, we've come up with this process in general. Starting from the point where there's a new story to be implemented...
The repo should be organized with a master branch, a staging and/or test branch (for deployment to a master testing sandbox), and one branch per story or feature. Start by going to the "dev" branch, whatever that means for your org, pull to make sure you have the latest copy, then create a new branch to work in.
Developers then push the current state of affairs to a Scratch Org, and begin development using their preferred method. Periodically commit so you can fix mistakes if they happen or if your org expires, etc.
Once the story is complete, go back to the "dev" branch, pull again, switch back to the story branch, and merge the dev branch in to the story branch. This brings it up to date and will let you know of any merge conflicts.
Resolve any conflicts, commit again, and then merge/pull request back in to the dev branch. At this point, the dev branch should be good for testing and deployment. Finally, when deploying to production, a similar pull, merge, resolve conflicts (which ideally should not happen), and merge again cycle should happen.
Once everything is fully merged to production, you can delete the story branches to save space and optimize performance.
add a comment |
I'm going to have to answer the questions out of order for them to make sense, and much of this is anecdotal at this point, but we've been doing this for a couple of years now, so I hope that this answer will be useful.
Is the recommended approach documented anywhere?
There are several competing theories on which way is the "best," and it's not related just to Salesforce, but any team that deals with git or another version control system. Salesforce only recommends that we use git, but doesn't prescribe a specific pattern, as far as I'm aware.
Should everybody pull and recreate and merge as soon as one story is done and merged?
Depending on the cadence of the team, this is more likely to be disruptive than helpful. There's a fairly simple way to handle this situation, which I'll outline below.
When do they recreate their scratch orgs?
Whenever they feel like it. You can do this one per story, once per feature, every time it expires, etc. Assuming all of the code is in your source of truth, it shouldn't matter.
When do they commit and push?
Commit periodically to have "backups" in case things go wrong, and push (preferably with a "squash") when it's ready to move on to the next branch.
When do they pull?
Immediately before branching or merging.
How would that look?
After a lot of painful experiences, we've come up with this process in general. Starting from the point where there's a new story to be implemented...
The repo should be organized with a master branch, a staging and/or test branch (for deployment to a master testing sandbox), and one branch per story or feature. Start by going to the "dev" branch, whatever that means for your org, pull to make sure you have the latest copy, then create a new branch to work in.
Developers then push the current state of affairs to a Scratch Org, and begin development using their preferred method. Periodically commit so you can fix mistakes if they happen or if your org expires, etc.
Once the story is complete, go back to the "dev" branch, pull again, switch back to the story branch, and merge the dev branch in to the story branch. This brings it up to date and will let you know of any merge conflicts.
Resolve any conflicts, commit again, and then merge/pull request back in to the dev branch. At this point, the dev branch should be good for testing and deployment. Finally, when deploying to production, a similar pull, merge, resolve conflicts (which ideally should not happen), and merge again cycle should happen.
Once everything is fully merged to production, you can delete the story branches to save space and optimize performance.
I'm going to have to answer the questions out of order for them to make sense, and much of this is anecdotal at this point, but we've been doing this for a couple of years now, so I hope that this answer will be useful.
Is the recommended approach documented anywhere?
There are several competing theories on which way is the "best," and it's not related just to Salesforce, but any team that deals with git or another version control system. Salesforce only recommends that we use git, but doesn't prescribe a specific pattern, as far as I'm aware.
Should everybody pull and recreate and merge as soon as one story is done and merged?
Depending on the cadence of the team, this is more likely to be disruptive than helpful. There's a fairly simple way to handle this situation, which I'll outline below.
When do they recreate their scratch orgs?
Whenever they feel like it. You can do this one per story, once per feature, every time it expires, etc. Assuming all of the code is in your source of truth, it shouldn't matter.
When do they commit and push?
Commit periodically to have "backups" in case things go wrong, and push (preferably with a "squash") when it's ready to move on to the next branch.
When do they pull?
Immediately before branching or merging.
How would that look?
After a lot of painful experiences, we've come up with this process in general. Starting from the point where there's a new story to be implemented...
The repo should be organized with a master branch, a staging and/or test branch (for deployment to a master testing sandbox), and one branch per story or feature. Start by going to the "dev" branch, whatever that means for your org, pull to make sure you have the latest copy, then create a new branch to work in.
Developers then push the current state of affairs to a Scratch Org, and begin development using their preferred method. Periodically commit so you can fix mistakes if they happen or if your org expires, etc.
Once the story is complete, go back to the "dev" branch, pull again, switch back to the story branch, and merge the dev branch in to the story branch. This brings it up to date and will let you know of any merge conflicts.
Resolve any conflicts, commit again, and then merge/pull request back in to the dev branch. At this point, the dev branch should be good for testing and deployment. Finally, when deploying to production, a similar pull, merge, resolve conflicts (which ideally should not happen), and merge again cycle should happen.
Once everything is fully merged to production, you can delete the story branches to save space and optimize performance.
answered yesterday
sfdcfoxsfdcfox
261k12209453
261k12209453
add a comment |
add a comment |
There are numerous strategies for doing so (So, there is no 1 good answer), however, here are a few resources that can help answers some if not all those questions based on your needs:
GitFlow Examples
These examples are using the default configuration with GitVersion. Which is continuous deployment mode for develop and continuous delivery mode for all other branches.
Feature Branches:

GitHub Flow a nutshell:
- Update master to latest upstream code
- Create a feature branch git checkout -b myFeatureBranch
- Do the feature/work (Spawn Scratch Orgs to develop/test features)
- Push feature branch to origin
- Create pull request from origin/ -> upstream/master
- Review, fix raised comments, merge your PR or even better, get someone else to.
The main rule of GitHub Flow is that master should always be
deployable. GitHub Flow allows and encourages continuous delivery.
For a more verbose description of each step, you can refer to Understanding the GitHub flow
add a comment |
There are numerous strategies for doing so (So, there is no 1 good answer), however, here are a few resources that can help answers some if not all those questions based on your needs:
GitFlow Examples
These examples are using the default configuration with GitVersion. Which is continuous deployment mode for develop and continuous delivery mode for all other branches.
Feature Branches:

GitHub Flow a nutshell:
- Update master to latest upstream code
- Create a feature branch git checkout -b myFeatureBranch
- Do the feature/work (Spawn Scratch Orgs to develop/test features)
- Push feature branch to origin
- Create pull request from origin/ -> upstream/master
- Review, fix raised comments, merge your PR or even better, get someone else to.
The main rule of GitHub Flow is that master should always be
deployable. GitHub Flow allows and encourages continuous delivery.
For a more verbose description of each step, you can refer to Understanding the GitHub flow
add a comment |
There are numerous strategies for doing so (So, there is no 1 good answer), however, here are a few resources that can help answers some if not all those questions based on your needs:
GitFlow Examples
These examples are using the default configuration with GitVersion. Which is continuous deployment mode for develop and continuous delivery mode for all other branches.
Feature Branches:

GitHub Flow a nutshell:
- Update master to latest upstream code
- Create a feature branch git checkout -b myFeatureBranch
- Do the feature/work (Spawn Scratch Orgs to develop/test features)
- Push feature branch to origin
- Create pull request from origin/ -> upstream/master
- Review, fix raised comments, merge your PR or even better, get someone else to.
The main rule of GitHub Flow is that master should always be
deployable. GitHub Flow allows and encourages continuous delivery.
For a more verbose description of each step, you can refer to Understanding the GitHub flow
There are numerous strategies for doing so (So, there is no 1 good answer), however, here are a few resources that can help answers some if not all those questions based on your needs:
GitFlow Examples
These examples are using the default configuration with GitVersion. Which is continuous deployment mode for develop and continuous delivery mode for all other branches.
Feature Branches:

GitHub Flow a nutshell:
- Update master to latest upstream code
- Create a feature branch git checkout -b myFeatureBranch
- Do the feature/work (Spawn Scratch Orgs to develop/test features)
- Push feature branch to origin
- Create pull request from origin/ -> upstream/master
- Review, fix raised comments, merge your PR or even better, get someone else to.
The main rule of GitHub Flow is that master should always be
deployable. GitHub Flow allows and encourages continuous delivery.
For a more verbose description of each step, you can refer to Understanding the GitHub flow
answered yesterday
gllsglls
11.4k72252
11.4k72252
add a comment |
add a comment |
Our currently workflow:
- git checkout -b feature/sales-api
- git commit add .
- git commit -am ""
- git fetch origin
- git rebase origin master
Once is done, rebase your branch to get the newest version of master, then:
- sfdx package:version:create....
Actually we have more than one package in a project. Particularly, I don't like this approach, because if I have only one package by repository we could automate everything.
Eg. after commit on develop/ build a version and install in the UAT.
after commit on master/ build a new version/ update the release doc and install in production.
(Currently we have 35 packages)
add a comment |
Our currently workflow:
- git checkout -b feature/sales-api
- git commit add .
- git commit -am ""
- git fetch origin
- git rebase origin master
Once is done, rebase your branch to get the newest version of master, then:
- sfdx package:version:create....
Actually we have more than one package in a project. Particularly, I don't like this approach, because if I have only one package by repository we could automate everything.
Eg. after commit on develop/ build a version and install in the UAT.
after commit on master/ build a new version/ update the release doc and install in production.
(Currently we have 35 packages)
add a comment |
Our currently workflow:
- git checkout -b feature/sales-api
- git commit add .
- git commit -am ""
- git fetch origin
- git rebase origin master
Once is done, rebase your branch to get the newest version of master, then:
- sfdx package:version:create....
Actually we have more than one package in a project. Particularly, I don't like this approach, because if I have only one package by repository we could automate everything.
Eg. after commit on develop/ build a version and install in the UAT.
after commit on master/ build a new version/ update the release doc and install in production.
(Currently we have 35 packages)
Our currently workflow:
- git checkout -b feature/sales-api
- git commit add .
- git commit -am ""
- git fetch origin
- git rebase origin master
Once is done, rebase your branch to get the newest version of master, then:
- sfdx package:version:create....
Actually we have more than one package in a project. Particularly, I don't like this approach, because if I have only one package by repository we could automate everything.
Eg. after commit on develop/ build a version and install in the UAT.
after commit on master/ build a new version/ update the release doc and install in production.
(Currently we have 35 packages)
edited yesterday
Raul
11.9k31841
11.9k31841
answered yesterday
Diéffrei QuadrosDiéffrei Quadros
211
211
add a comment |
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f255333%2fefficiently-merge-handle-parallel-feature-branches-in-sfdx%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown