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
| # Path to your oh-my-zsh installation. | |
| export ZSH=/Users/dimitar.danailov/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| # ZSH_THEME="robbyrussell" | |
| ZSH_THEME="agnoster" |
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
| #include <stdio.h> | |
| #include <unistd.h> | |
| /* This program forks and and the prints whether the process is | |
| * ‐ the child (the return value of fork() is 0), or | |
| * ‐ the parent (the return value of fork() is not zero) | |
| * | |
| * When this was run 100 times on the computer the author is | |
| * on, only twice did the parent process execute before the | |
| * child process executed. | |
| * |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <pthread.h> | |
| int count = 0; | |
| pthread_mutex_t count_mutex = PTHREAD_MUTEX_INITIALIZER; | |
| pthread_cond_t condition_var = PTHREAD_COND_INITIALIZER; | |
| // Write numbers 1‐3 and 8‐10 as permitted by functionCount2() | |
| void *functionCount1() | |
| { | |
| for (;;) |