Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/memes/home
Files that are common to most of my machines
https://github.com/memes/home
Last synced: 7 days 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 (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-12-03T16:20:00.000Z (about 2 months ago)
- Last Synced: 2024-12-03T16:41:54.766Z (about 2 months ago)
- Language: Shell
- Size: 242 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
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.#### 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 master --track origin/master
```