-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83b52c1
commit 192f31a
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Project Helper | ||
|
||
Project Helper helps you structure your projects on your filesystem. | ||
|
||
## Install | ||
|
||
```bash | ||
# Download the binary | ||
go install github.com/nousefreak/projecthelper@latest | ||
# Install the ph alias | ||
projecthelper install | ||
``` | ||
|
||
## Commands | ||
|
||
| command | description | | ||
| ------------------------------------------------------ | --------------------------------------------------------- | | ||
| `ph setup` | Run setup (manages `.config/projecthelper/config.yaml` | | ||
| `ph clone https://github.com/nousefreak/projecthelper` | Clone to `${basedir}/github.com/nousefreak/projecthelper` | | ||
| `ph org github.com/nousefreak` | Clones all repos (set `GITHUB_TOKEN` to include private) | | ||
| `ph go [search]` | Open a fuzzyfinder that will `cd` to the repo | | ||
| `ph [search]` | Shorthand for `ph go` | | ||
| `ph update` | Run a `git fetch` on all repos | | ||
|
||
|