Add ability to update git-based project #4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I moved thenew
command under a newproject
subcommand so that we could have more commands for working with projects grouped under that subcommand.~~So instead of ~~
We haveandCurrently my version of theupdate
command requires the git url to be passed again since we don't save it anywhere during thenew
command. I think it would be nice to make it optional, and reuse an existing url that we stash somewhere duringnew
. I think we'd still have to always have the option, for existing projects that didn't have it saved, and I also think we'd want to have some way of updating the git url of an existing project in case you want to change it to a different branch or something. Maybedevbox project config --git <url>
or something.Adds a new
renew
command that re-generates (nay, copies/updates) a project config from a git repository so that existing projects can be updated. It requires passing the git url again since it is not stored anywhere.(Fixes #3)