File: push-release.sh

package info (click to toggle)
hiro 1.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 452 kB
  • sloc: python: 2,006; sh: 54; makefile: 30
file content (8 lines) | stat: -rwxr-xr-x 179 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
#!/bin/bash
cur=$(git rev-parse --abbrev-ref HEAD)
git checkout master
git push origin master --tags
git checkout stable
git merge master
git push origin stable
git checkout $cur