https://github.com/zhengpd/codehouse
CLI tool to manage local git repostories
https://github.com/zhengpd/codehouse
cli git tool
Last synced: about 1 month ago
JSON representation
CLI tool to manage local git repostories
- Host: GitHub
- URL: https://github.com/zhengpd/codehouse
- Owner: zhengpd
- License: mit
- Created: 2020-03-19T12:39:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-19T12:40:42.000Z (over 6 years ago)
- Last Synced: 2025-10-24T11:41:28.548Z (8 months ago)
- Topics: cli, git, tool
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codehouse
## Description
Codehouse is designed as a command line tool for managing source codes.
## Installation
$ git clone https://github.com/zhengpd/codehouse.git ~/.codehouse
$ echo 'export CODEHOUSE_ROOT="$HOME/.codehouse"' >> ~/.bashrc # or ~/.zshrc
$ echo 'eval "$($CODEHOUSE_ROOT/bin/codehouse init -)"' >> ~/.bashrc # or ~/.zshrc
## Usage
```bash
$ codehouse clone https://github.com/basecamp/sub.git
$ codehouse open sub
$ codehouse readme sub
# Or specify the editor to open with (defaults to vim)
$ EDITOR=subl codehouse open sub
# Use a different libraries root (defaults to ~/.codehouse-src)
$ CODEHOUSE_SRC_ROOT="~/another-src" codehouse open sub
```
## Credits
- [Sub](https://github.com/basecamp/sub)
## License
MIT. See `LICENSE`.