https://github.com/memes/home
Files that are common to most of my machines
https://github.com/memes/home
Last synced: 3 months ago
JSON representation
Files that are common to most of my machines
- Host: GitHub
- URL: https://github.com/memes/home
- Owner: memes
- License: mit
- Created: 2016-03-10T17:51:06.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2026-02-17T23:43:05.000Z (3 months ago)
- Last Synced: 2026-02-18T04:52:41.105Z (3 months ago)
- Language: Shell
- Size: 332 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Collection of dotfiles and other common files for home
My files that should be semi-portable between systems. Can be directly checked out to ``$HOME`` if feeling adventurous.
## New machine instructions
### Moving to HTTPS authentication
For new installs, prefer use of HTTPS authentication over SSH where possible. Need to use a persistent keystore where
safe to do so.
### Dotfiles in devcontainer
Should be automatic; just source this repo as a dotfiles repo and it should be
bootstrapped automatically via `bootstrap.sh`.
### Manual installation
#### Linux
Only use on encrypted filesystems
```shell
git config --file ~/.gitconfig.private credential.helper store
```
#### OS X
Use Keychain integration
```shell
git config --file ~/.gitconfig.private credential.helper osxkeychain
```
### Pull into current home
```shell
cd
git init
git remote add origin https://github.com/memes/home.git
git fetch origin
git checkout -b main --track origin/main
```