As the title saysgit branch -r --merged origin/onlineThis command can do some things, but it takes three days
ringa_lee
Standardize branch naming, this is the way we adopt it in practice.
For example, if you create a new feature branch, you can name it feature/something_awsome-nickname-151209.
Explain:
feature means that this is a feature branch, release and hotfix are also similar.
/, used to separate branch types and specific names.
something_awsome, which is a short description of the function, separated by underscores.
-, separator
nickname, creator’s abbreviation
151209, creation date
Regarding branch naming, I compiled the branch specifications with reference to Git flow.
Standardize branch naming, this is the way we adopt it in practice.
For example, if you create a new feature branch, you can name it feature/something_awsome-nickname-151209.
Explain:
feature means that this is a feature branch, release and hotfix are also similar.
/, used to separate branch types and specific names.
something_awsome, which is a short description of the function, separated by underscores.
-, separator
nickname, creator’s abbreviation
151209, creation date
Regarding branch naming, I compiled the branch specifications with reference to Git flow.