Related to: #233 This is a more specific request to add a new [conditional include](https://git-scm.com/docs/git-config#_conditional_includes) keyword in `includeIf` conditions that matches the **hostname**. A common usage would be for [dotfiles](https://wiki.archlinux.org/title/Dotfiles#Tracking_dotfiles_directly_with_Git), for which [the current approach using git requires separate branches and rebase](https://wiki.archlinux.org/title/Dotfiles#Host-specific_configuration). Example: ``` [includeIf "hostname:FIRSTMACHINE"] path = /path/to/firstmachineconfig.inc [includeIf "hostname:SECONDMACHINE"] path = /path/to/secondmachineconfig.inc ```