about summary refs log tree commit diff stats
path: root/notes/git_crypt.md
blob: b123a77b5fb1d99861d52e67a49841dd78ecbb93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# What to do, when nix wants to build the locked repository

Simply delete the source path:

```
sudo nix store delete --ignore-liveness <source_path>
```

# How to remove git crypt [1]:

To avoid multiple commits and moved around files the following worked for me:

- checkout and unlock repo
- remove `[filter "git-crypt"]` and `[diff "git-crypt"]` sections from `.git/config`
- remove corresponding lines in `.gitattributes` and add changes to the index
- remove symmetric key (if any) `rm --recursive .git/git-crypt`
- remove (encrypted) path only from the index `git rm --cached foobar`
- re-add local (unencrypted) path to the index `git add foobar`
- commit and push the changes

[1]: https://github.com/AGWA/git-crypt/issues/170#issuecomment-788820507