Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivanukhov/.development
Various development-related files
https://github.com/ivanukhov/.development
git tmux zsh
Last synced: about 2 months ago
JSON representation
Various development-related files
- Host: GitHub
- URL: https://github.com/ivanukhov/.development
- Owner: IvanUkhov
- Created: 2014-07-20T07:07:09.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-08-16T10:44:28.000Z (5 months ago)
- Last Synced: 2024-08-16T12:01:58.946Z (5 months ago)
- Topics: git, tmux, zsh
- Language: Shell
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# .development
The repository contains various development-related files. Best enjoyed
responsibly.## Installation
```sh
git clone https://github.com/IvanUkhov/.development.git ~/.development && make -C ~/.development
```### Git: Signing commits
Generate a key and upload to GitHub:
```sh
brew install gpg2 gnupggpg --full-generate-key # RSA, at least 4096 bits long
gpg --list-secret-keys
gpg --armor --export KEY
```If the first `gpg` command hangs, use the following instead:
```
cat >key.conf <> ~/.gnupg/gpg-agent.conf
echo "use-agent\nbatch" >> ~/.gnupg/gpg.conf
echo 'export GPG_TTY=$(tty)' >> ~/.zshrc
killall gpg-agentgpg --list-keys --keyid-format LONG
git config --global commit.gpgsign true
git config --global user.signingkey KEY
```