Approach
Elegant Git aims to standardize how a work environment should be configured. It operates several levels of configurations (see below) that can be applied to a Git repository (local configuration) and/or to a Git installation globally (global configuration). So,
- the local configuration applies by running
git elegant repo configureand configures the current Git repository (workspace linkage, per-repo memory, optional local standards and aliases) - the global configuration applies by running
git elegant git configureand usesgit config --global <key> <value>for Git installation-wide settings
If you’ve applied a global configuration (acquired_version in shared memory), repo configure does not add or rewrite local git aliases or local standards — those come from git configure once per Git installation. It still removes redundant local elegant … aliases and a stale local elegant-git.acquired marker when present. Run git elegant git configure once on each machine where you use Elegant Git globally.
For local-only setups (no global acquired marker), repo configure applies the full local standards and alias set, same as before.
That’s why the following markers explain how each particular option will be configured:
- [
b] - configures for both configurations - [
l] - configures only for a local configuration - [
g] - configures only for a global configuration - [
i] - if a global configuration is applied, this option isn’t used in local configuration; otherwise, uses in local configuration
Also, there are defined the custom configuration keys in addition to the standard git config options. These keys are set automatically during git configure or repo configure; you do not need to set them manually. Everything that does not live in git config — workspaces, the repository registry, protected branches, the default development branch — is described on the memory page.
Level: Basics
The basics configuration sets the mandatory options for the correct user-focused operation of Git and Elegant Git. During the configuration, you will be asked to provide appropriate values. Furthermore, if you run repo configure, it proposes defaults that are set by git configure. The basics includes:
- setting your full name usign
user.name[b] - setting your email usign
user.email[b] - setting a default editor using
core.editor[b] - setting protected branches (stored in per-repo memory, not
git config) [l] - setting a default development branch (stored in per-repo memory, not
git config) [l]
Level: Standards
The standards configuration adopts the Git setting for painless and user-oriented commands execution for both Git and Elegant Git. It takes into account OS-specific stuff while configuring specific options. All Git options in this configuration have the defined values and any changes to them may affect the designed behavior of the Elegant Git. However, it should not degrade your Git-related experience. So, the following configuration is applied automatically:
core.commentChar |[i] enables lines in commit messages starting from#(|prefixes lines that should be ignored)apply.whitespace fix[i] removes whitespaces when applying a patchfetch.prune true[i] keeps remote-tracking references up-to-datefetch.pruneTags false[i] does not remove tags while fetching until you specify it explicitly withgit fetch --tagscore.autocrlf input[i] solves issues with line endings on either MacOS/Linux withinputor Windows withtruepull.rebase true[i] usesrebasewhengit pullrebase.autoStash false[i] don’t useautostashwhengit rebasecredential.helper osxkeychain[i] configures default credentials storage on MacOS onlyacquired_versionin shared memory [g] identifies that Elegant Git global configuration is applied (value is the installed version)
Level: Aliases
In order to make an Elegant Git command look like a native Git command, the historical flat command names are registered as Git aliases — git save-work reaches git elegant work save. This should significantly improve user experience.
The configuration is a call of git config "alias.<flat-name>" "elegant <object> <action>" [i] for each of those names, show-commands excepted. Note that only the flat names get an alias; the object-first form is always spelled in full as git elegant work save. The flat names themselves are deprecated, so treat the aliases as compatibility rather than as the way to drive the tool.
When global configuration is applied, aliases are written globally only; repo configure and repo migrate remove redundant local elegant aliases instead.
Level: Signature
This configuration aims to say Git how to sign commits, tags, and other objects you create. It runs during repo configure only when no workspace is assigned. Once a workspace is assigned, repo configure never runs local signature setup — even if the workspace has an empty signing_key. Signature on a workspace (signing_key, gpg_program) is applied from the workspace instead; set or change it with workspace new / workspace edit. When the signature step runs (no workspace), all available signing keys are shown. Then you choose the key that will be used to make signatures. If the key is provided, the configuration triggers, otherwise it does not apply. The signing configuration consists of
- setting
user.signingkey[l] to a provided value - setting
gpg.program[l] to a full path ofgpgprogram - setting
commit.gpgsign[l] totrue - setting
tag.forceSignAnnotated[l] totrue - setting
tag.gpgSign[l] totrue
For now, only gpg is supported. If you need other tools, please create a new feature request.
Custom keys
The Elegant Git configuration keys:
elegant-git.repo-ididentifies the repository in shared memory (UUIDv7). Set byrepo configure.acquired_versionin shared memory defines whether global configuration was applied (see approach for the details). Legacyelegant-git.acquiredin git config is migrated bygit configure/git migrate.
Protected branches and the default development branch are read from per-repo memory (legacy values in elegant-git.protected-branches / elegant-git.default-branch are migrated by repo configure or repo migrate). The “protected” branch rules and default-branch semantics are unchanged; only storage moved.