Skip to content

Commit

Permalink
Add (backed up) previously encrypted files back again
Browse files Browse the repository at this point in the history
1. Unlocked the repository: `git-crypt unlock`
2. Added all backed up `*.igloocrypt` files back into the repository
3. Ensured all `*.igloocrypt` are tracked to be encryped:
   `git-crypt status`

After this commit the encryption can be validated to by locking the
repository again: `git-crypt lock`

GH-113
  • Loading branch information
arcticicestudio committed Sep 8, 2018
1 parent cff197e commit b079adb
Show file tree
Hide file tree
Showing 11 changed files with 45 additions and 8 deletions.
16 changes: 8 additions & 8 deletions snowblocks/git/gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,28 @@
# https://github.com/so-fancy/diff-so-fancy#options

[includeIf "gitdir:~/yggdrasil/"]
path = ~/.gitconfig_auth
path = ~/.gitconfig-auth

[includeIf "gitdir:~/code/bitbucket/"]
path = ~/.gitconfig_auth
path = ~/.gitconfig-auth

[includeIf "gitdir:~/code/bitfroest/"]
path = ~/.gitconfig_auth
path = ~/.gitconfig-auth

[includeIf "gitdir:~/code/github/"]
path = ~/.gitconfig_auth
path = ~/.gitconfig-auth

[includeIf "gitdir:~/code/gitlab/"]
path = ~/.gitconfig_auth
path = ~/.gitconfig-auth

[includeIf "gitdir:~/code/incubator/"]
path = ~/.gitconfig_auth
path = ~/.gitconfig-auth

[includeIf "gitdir:~/.igloo/"]
path = ~/.gitconfig_auth
path = ~/.gitconfig-auth

[includeIf "gitdir:~/code/job/"]
path = ~/.gitconfig_auth_job
path = ~/.gitconfig-auth-job

[core]
repositoryFormatVersion = 0
Expand Down
Binary file added snowblocks/git/gitconfig-auth-job.igloocrypt
Binary file not shown.
Binary file added snowblocks/git/gitconfig-auth-svengreb.igloocrypt
Binary file not shown.
Binary file added snowblocks/git/gitconfig-auth.igloocrypt
Binary file not shown.
18 changes: 18 additions & 0 deletions snowblocks/git/snowblock.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,24 @@
},
"~/.git-commit-msg": null,
"~/.gitconfig": null,
"~/.gitconfig-auth": {
"hosts": {
"archbook": "gitconfig-auth",
"igloo": "gitconfig-auth"
}
},
"~/.gitconfig-auth-svengreb": {
"hosts": {
"archbook": "gitconfig-auth-svengreb",
"igloo": "gitconfig-auth-svengreb"
}
},
"~/.gitconfig-auth-job": {
"hosts": {
"archbook": "gitconfig-auth-job.igloocrypt",
"igloo": "gitconfig-auth-job.igloocrypt"
}
},
"~/.gitignore": null
}
}
Expand Down
Binary file not shown.
Binary file added snowblocks/tilix/bookmarks-igloo.json.igloocrypt
Binary file not shown.
11 changes: 11 additions & 0 deletions snowblocks/tilix/snowblock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
[
{
"clean": ["~/.config/tilix"]
},
{
"link": {
"~/.config/tilix/bookmarks.json": {
"create": true,
"hosts": {
"archbook": "bookmarks-archbook.json.igloocrypt",
"igloo": "bookmarks-igloo.json.igloocrypt"
}
}
}
}
]
Binary file added snowblocks/xdg/gtk-3.0/bookmarks-archbook.igloocrypt
Binary file not shown.
Binary file added snowblocks/xdg/gtk-3.0/bookmarks-igloo.igloocrypt
Binary file not shown.
8 changes: 8 additions & 0 deletions snowblocks/xdg/snowblock.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
"~/.config/user-dirs.locale": {
"force": true
},
"~/.config/gtk-3.0/bookmarks": {
"create": true,
"force": true,
"hosts": {
"archbook": "gtk-3.0/bookmarks-archbook.igloocrypt",
"igloo": "gtk-3.0/bookmarks-igloo.igloocrypt"
}
},
"~/.local/share/applications/atom.desktop": {
"create": true,
"force": true,
Expand Down

0 comments on commit b079adb

Please sign in to comment.