Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2020-10-05 | 572 Bytes | |
stable.tar.gz | 2020-10-05 | 15.7 MB | |
stable.zip | 2020-10-05 | 16.1 MB | |
Totals: 3 Items | 31.8 MB | 0 |
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