https://github.com/vncsmyrnk/git-config
My default git config
https://github.com/vncsmyrnk/git-config
git
Last synced: about 2 months ago
JSON representation
My default git config
- Host: GitHub
- URL: https://github.com/vncsmyrnk/git-config
- Owner: vncsmyrnk
- License: gpl-3.0
- Created: 2024-06-07T17:50:44.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-04-07T21:51:08.000Z (about 2 months ago)
- Last Synced: 2025-04-07T22:33:09.132Z (about 2 months ago)
- Topics: git
- Language: Shell
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My git config
This is my local config for [git](https://git-scm.com/).
## Install
This project uses [just](https://github.com/casey/just) and [stow](https://www.gnu.org/software/stow/) for the installation.
```bash
just install
```Considering `git` is already installed, you can just run:
```bash
just config
```> [!IMPORTANT]
> Be sure to set the environment variables `GIT_NAME` and `GIT_EMAIL` to correctly set up the config:
> ```bash
> export GIT_NAME="John Doe"
> export GIT_EMAIL="[email protected]"
> ```