Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matyo91/kitchenplan-config
Personal Configuration for Kitchenplan config
https://github.com/matyo91/kitchenplan-config
Last synced: 6 days ago
JSON representation
Personal Configuration for Kitchenplan config
- Host: GitHub
- URL: https://github.com/matyo91/kitchenplan-config
- Owner: matyo91
- Archived: true
- Created: 2014-10-20T11:24:25.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-16T15:12:31.000Z (about 9 years ago)
- Last Synced: 2024-08-02T20:48:04.944Z (3 months ago)
- Size: 238 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kitchenplan Configuration
This is a Kitchenplan configuration repository. This repository contains all configuration to install and configure our OSX workstations. More information about Kitchenplan and on how to use it can be found in the [Kitchenplan README](https://github.com/kitchenplan/kitchenplan).
# Profile
create ~/.bash_profile
# git
GIT_AUTHOR_NAME="Mathieu Ledru"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
git config --global user.name "$GIT_AUTHOR_NAME"
GIT_AUTHOR_EMAIL="[email protected]"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git config --global user.email "$GIT_AUTHOR_EMAIL"
GIT_MERGE_AUTOEDIT=no
alias gs='git status'
alias gd='git diff'
alias gc='git commit -a -m'
alias gpull='git pull'
alias gpush='git push'
alias gup='git up'
# vagrant
alias vu='vagrant up'
alias vs='vagrant ssh'