See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
| #!/bin/bash | |
| # tested 5.11.0-16-generic #17-Ubuntu SMP Wed Apr 14 20:12:43 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux | |
| # installing dkms and git | |
| sudo apt update | |
| sudo apt install -y dkms git | |
| # cloning driver repository | |
| mkdir ~/src | |
| cd ~/src |
| #!/bin/bash | |
| # Removes old revisions of snaps | |
| # CLOSE ALL SNAPS BEFORE RUNNING THIS | |
| set -eu | |
| LANG=C snap list --all | awk '/disabled/{print $1, $3}' | | |
| while read snapname revision; do | |
| snap remove "$snapname" --revision="$revision" | |
| done |
| git config -e --global | |
| [user] | |
| email = [email protected] | |
| name = Danilo | |
| [pull] | |
| rebase = true | |
| [alias] | |
| cleanup = "!git fetch -f && git branch | grep -v "dev" | grep -v "master" | xargs --no-run-if-empty git branch -D && git gc" |
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
| docker container prune -f | |
| docker volume prune -f | |
| docker image prune -a -f | |
| docker network prune -f | |
| docker system prune -f |
| gsettings set org.gnome.shell.extensions.dash-to-dock isolate-workspaces true |
| heroku addons:create heroku-redis:hobby-dev --version 6 -a app_name | |
| heroku redis:promote redis-curved-54192 --app app_name |
| sudo dd if=ubuntu-21.10-desktop-amd64.iso of=/dev/sdc bs=4M; sync |
| grep -r --include '*.list' '^deb ' /etc/apt/sources.list /etc/apt/sources.list.d/ |
| #!/usr/bin/env ruby | |
| heroku pg:credentials:rotate DATABASE --name analyst -a example-app |