Make a release

When you start to make a release, I think if you look at your commit it can be better

1
git log

then if you make some wrong commit, you can delete wrong commit with

1
git rebase -i HEAD~2

command.

Then,

1
git push origin +develop

After that, you can check you branch with

1
git branch -a

then let’s start to release ;

1
git flow release start your_version_number

your_version_number can be like 0.1.0 . Actually can be like

1
git flow release start 0.1.0

When we write this command, you can create VERSION.txt file, and open ‘txt’ file then write some number with your_version_number

Write with order below commands,

1
2
git add .
git commit -m "Bump version 'your_version_number'"
1
git flow release finish 0.1.0
1
git checkout release/0.1.0
1
git push origin develop
1
git push origin +master

Yep, Now you made a release you can check on your repo settings on github.

Let’ s add Tag,

1
git tag
1
git push --tags

That’ s all. I hope help to you.

Comments