https://github.com/memes/home
Files that are common to most of my machines
https://github.com/memes/home
Last synced: 4 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 (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-03-24T05:14:12.000Z (8 months ago)
- Last Synced: 2025-06-02T22:04:34.280Z (5 months ago)
- Language: Shell
- Size: 271 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```