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
Let's say we have a git repo, we run against it and we generate the
usingvarfixture=newEmptyRepositoryFixture();fixture.Repository.MakeATaggedCommit("1.0.0");fixture.Repository.CreateBranch("development");Commands.Checkout(fixture.Repository,"development");//Create an initial feature branchvarfeature123=fixture.Repository.CreateBranch("feature/JIRA-123");Commands.Checkout(fixture.Repository,"feature/JIRA-123");fixture.Repository.MakeCommits(1);//Merge itCommands.Checkout(fixture.Repository,"development");fixture.Repository.Merge(feature123,Generate.SignatureNow());//Create a second feature branchfixture.Repository.CreateBranch("feature/JIRA-124");Commands.Checkout(fixture.Repository,"feature/JIRA-124");fixture.Repository.MakeCommits(1);
The text was updated successfully, but these errors were encountered:
Let's say we have a git repo, we run against it and we generate the
The text was updated successfully, but these errors were encountered: