git flow
#basic
git flow init
#with default to not be promted
git flow init -d
#with force to re-run init and edit data
git flow init -f#Starting a release create a branch release/release_version
#tipically version are Semantic Versioning standard X.Y.Z
git flow release start release_version
#Finish a release, remember to update your application version!
git flow release finish release_version
#Remember to push all branches and tags
git push --all --follow-tags#Open a feature branch named: feature/feature_name
git flow feature start feature_name
#Close a feature branch
git flow feature finish feature_name
#Remember to push all branches
git push --allgit flow release finish '0.1.0'$ git flow init
Initialized empty Git repository in ~/project/.git/
No branches exist yet. Base branches must be created now.
Branch name for production releases: [master]
Branch name for "next release" development: [develop]
How to name your supporting branch prefixes?
Feature branches? [feature/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? []
$ git branch
* develop
master$ git checkout -b myfeature develop
Switched to a new branch "myfeature"
Also in Shell:
- git push to heroku
- create symbolic link linux
- where is path on klai linux
- ufw allow postgresql
- npm move package from devdependencies to dependencies
- shell set environment variable
- how to swap branch git
- how to open file in linux
- find command also return directory names?
- how to push in git command line
- Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd
- how to check installed packages in linux command
- view memory usage linux
- start mariadb on linux terminal
- git ignore node_modules
- list all the files in a directory without the directory in linux
- error installing drivelist npm
- make shell script executable
- linux scp
- git delete all branches except master
- install bootstrap vue laravel 7
- grep docker logs
- install itertools
- run docker redis localhost