Rory Byrne

Results 55 comments of Rory Byrne

I'm having the same issue, any advice for how to get this working @relwell ?

Brilliant, thank you @relwell . Am I right in thinking that the only change is removing `.encode('utf-8')` - [here](https://gist.github.com/relwell/3eb9d68526ba8eadb41b3b1399e747a9#file-zappa_async_fix-py-L263)? I'm working on my own patch right now and that's the...

+1 - I need this too.

+1 I'm also interested in Bootstrap 4 support

Some ideas: * Integrate with Linear so that git-plan can pull the project name from there (e.g. `GPL-XXX`). This would work well with #24, allowing us to give plans the...

This could be handled in `__cli__.py` by catching the `ProjectNotInitialized` exception and then triggering the `init` command with a `prompt=True` flag. The `init` command can be modified to optionally prompt...

I think adding native support for other tools is outside the scope of this project, but I opened an issue (https://github.com/synek/git-plan/issues/86) to add JSON output support so that others can...

As a starting point, one possible entrypoint for plan-provider functionality is a subcommand like the following: `git plan add --from linear --id XYZ-450` `git plan add --from github --id 65`...

One issue I have with this is that Github/Linear issues usually map to branches, whereas our tool currently maps each `plan` to a commit in a branch. It will still...

I think the easiest way to achieve this, as a first attempt, is to parse annotated comments in code. For example: ``` # git-plan: GP-131 def some_func(): call_stuff() ... ```...