An open API service indexing awesome lists of open source software.

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

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]"
> ```