Skip to content

stable

Compare
Choose a tag to compare
@ryandeivert ryandeivert released this 15 Mar 20:31
· 12 commits to master since this release
27b8669

This is to be used as a rolling 'stable' tag. It allows the following command to clone the latest stable release without need to update documentation:

git clone --branch stable https://github.com/airbnb/streamalert.git


Updating the tag in the future requires the following:

  • If you have the commit checked out that you want to tag:

git tag stable --force

  • Alternatively, you can specify the commit you want to tag:

git tag --force stable <commit_sha>

  • Update the remote with the new tag reference:

git push origin stable --force