This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
release
Dan O'Neill edited this page Mar 31, 2017
·
2 revisions
Releases are a way to package and provide software. They are based on Git tags which mark a specific point in the history of the samples.
We maintain a single release which is the latest release and based on the current ArcGIS Android SDK release. We do not release as we add new samples or update existing samples mid release so the master
branch will always have the most up to date samples for the current release.
When a new release is made available the previous release returns to a tag, this is to ensure that previous versions of the SDK samples are archived and available for download or a specific point to create a branch off of.
- Get a list of tags:
$ git tag -ln
- Create branch from tag:
$ git checkout -b [branchname] [tag]
Where [branchname]
= the name you want to use & [tag]
represents the tag you want your branch to point to.