See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| #!/usr/bin/env bash | |
| set -e | |
| main() { | |
| previous_file="$1" | |
| file_to_edit=`select_file $previous_file` | |
| if [ -n "$file_to_edit" ] ; then | |
| "$EDITOR" "$file_to_edit" | |
| main "$file_to_edit" |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| def xpath_soup(element): | |
| # type: (typing.Union[bs4.element.Tag, bs4.element.NavigableString]) -> str | |
| """ | |
| Generate xpath from BeautifulSoup4 element. | |
| :param element: BeautifulSoup4 element. | |
| :type element: bs4.element.Tag or bs4.element.NavigableString |
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/v/oh-my-zsh | |
| # Set name of the theme to load. | |
| ZSH_THEME="mgutz" | |
| # Set to this to use case-sensitive completion | |
| # CASE_SENSITIVE="true" | |
| # Comment this out to disable weekly auto-update checks |