Open
Description
With V4 of the AWS SDK for .NET being released for GA we have made some branch changes to the repository. The main
and development
branch now point to the V4 codebase. PRs must be submitted to the development
branch going forward.
The V3 codebase has moved to the aws-sdk-net-3.7
and aws-sdk-net-3.7-development
branches. New features and bug fixes should first target V4 branches and then depending on the priority of the issue we will back port to the V3 codebase.
The following steps can be used to update local clones of the repository to the new branch changes.
git branch -m main aws-sdk-net-v3.7
git fetch origin
git branch -u origin/aws-sdk-net-v3.7 aws-sdk-net-v3.7
git branch -m main-staging aws-sdk-net-v3.7-development
git fetch origin
git branch -u origin/aws-sdk-net-v3.7-development aws-sdk-net-v3.7-development
git branch -m v4-development development
git fetch origin
git branch -u origin/development development
git branch -m v4-release main
git fetch origin
git branch -u origin/main main