Dev(mode) is a project management utility for developers.
``` USAGE: dm [SUBCOMMAND]
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: clone Clones a utils repository in a specific folder structure. config Sets options for configuration. fork Clone repo and set upstream to your fork help Prints this message or the help of the given subcommand(s) open Opens a project on your selected text editor. ```
cargo install devmode
paru -S devmode-git
The config
or cf
command will help you configure dm
to your liking.
You can set your favorite text editor running:
dm config -e --editor
You can set your Git host running:
dm config -h --host
You can set your Git user running:
dm config -o --owner
You can configure everything running:
dm config -a --all
You can show your current config running:
``` dm config -s --show
Current settings: Host: GitHub Owner: edfloreshz Editor: Visual Studio Code ```
Dev(mode) facilitates repository storage and organization in your filesystem.
When you clone a repository it will be stored to your filesystem using a specific folder structure.
You can also use dm cl
$HOME
└── Developer
└── host
└── owner
└── repo
This makes it easier for you to find repositories and allows dm
to open them by just specifying the name of the
project.
```
USAGE:
dm clone
FLAGS: -h, --help Prints help information -V, --version Prints version information
ARGS:
bash
dm clone https://github.com/edfloreshz/devmode
bash
dm clone <host> <owner> <repository>
config.toml
Running dm config
asks you to specify your Git host
and user
, now just type one of your repos.
bash
dm clone <repo>
You can also clone multiple of your own repositories while using this option.
bash
dm clone <repo1> <repo2>
You can clone without specifying the arguments.
bash
dm clone
You will be presented with the following setup:
``` ᐅ dm clone
? Choose your Git host: › ❯ GitHub GitLab ? Git username: › user ? Git repo name: › repo
Cloning edfloreshz/blog from GitHub... ```
Clone a repo and set upstream, ideal for forks, when you clone a repository it will be stored to your filesystem using a
specific folder structure. Similar to how dm cl
works.
```
dm fork --upstream
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-u, --upstream
ARGS:
```
Use the --upstream
or -u
to set the upstream repository, then specify the repository that you wish to modify.
dm fork --upstream https://github.com/user/repo https://github.com/your-user/your-repo-fork
dm fk github <provider> <user> <forked-repo> -u <url>
This will launch a clone setup and guide you throught the cloning process.
``` dm fork -u https://github.com/user/repo ? Choose your Git host: › ❯ GitHub GitLab ? Git username: › your-user ? Git repo name: › your-repo-fork
Cloning your-user/your-repo-fork from GitHub... Setting https://github.com/user/repo how upstream ```
Opens a project with your selected text editor.
You can also use dm o
```
USAGE:
dm open
FLAGS: -h, --help Prints help information -V, --version Prints version information
ARGS:
You can open a project with the following command:
bash
dm open <project>
If two or more projects with the same name are found, you will have to choose which one to open.
If you have a proposal for a new feature, open a new issue.