Add templates to sandbox #13
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently
sandbox
does the bare minimum to setup a new temporary project. Tomake
sandbox
more useful adding the concept of file system templates wouldallow much faster setting up of development environments. For example:
Instead of simply calling
git init
in the new sandbox the--git
option wouldclose the repository provided.
The
--python
option would setup avirtualenv
and add the appropriatecommands to activate and deactivate it to
.enter
and.exit
.Instead of doing this in
sandbox
instead added the Pyhton functionality withautoenv add=py
.