Efficiently merge handle parallel feature branches in SFDXHow 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

Multi tool use
Are astronomers waiting to see something in an image from a gravitational lens that they've already seen in an adjacent image?
Modeling an IP Address
Why am I being followed by a political opponent in Twitter?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
Can a vampire attack twice with their claws using multiattack?
How do I deal with an unproductive colleague in a small company?
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
Do infinite dimensional systems make sense?
Is it possible to do 50 km distance without any previous training?
How is it possible to have an ability score that is less than 3?
dbcc cleantable batch size explanation
Alternative to sending password over mail?
Question on branch cuts and branch points
Maximum likelihood parameters deviate from posterior distributions
Replacing matching entries in one column of a file by another column from a different file
Why are electrically insulating heatsinks so rare? Is it just cost?
How old can references or sources in a thesis be?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
Can a monk's single staff be considered dual wielded, as per the Dual Wielder feat?
How do I gain back my faith in my PhD degree?
Why does Kotter return in Welcome Back Kotter?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Efficiently merge handle parallel feature branches in SFDX
How 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
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
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 Mar 26 at 12:56


Robert SösemannRobert Sösemann
13.1k1178225
13.1k1178225
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 Mar 26 at 13:47


sfdcfoxsfdcfox
263k12209456
263k12209456
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 Mar 26 at 13:40


gllsglls
11.6k72253
11.6k72253
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 Mar 26 at 14:13
Raul
12k31841
12k31841
answered Mar 26 at 13:39
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
73ziMVpPb3Vkp0i3mFCCZ871YWIv