Daniel Holmes
Daniel Holmes
@Akryum I'm able to replicate this with a completely new project. ## Reproduction Steps ### Project Setup ``` $ yarn global add @vue/cli@next $ vue create testproject $ cd testproject...
I gave up and switched to Pinia
There's already a PR handling this, just needs to be merged by the looks of things
Sorry, I should have linked it @robinvdvleuten, my bad. According to https://vuex.vuejs.org/guide/plugins.html#committing-mutations-inside-plugins plugins should not directly mutate state at all but rather should rely on mutations. From what I could...
I need this functionality for a work script I'm writing. If someone wants to point me in the right direction towards a fix I can get cracking on a pr?
@Midnighter I did some more research and under the hood it seems that when doing an orphan checkout the branch is not actually created. The branch will only exist after...
This is explained here: https://stackoverflow.com/questions/47078961/create-an-orphan-branch-without-using-the-orphan-flag So unless I'm mistaken this would actually end up being expected functionality...
Ok I've finished experimenting and I've found a way of creating orphan branches. ```python from os import getcwd from git import Repo, Head orphan_branch = 'lumberjack' r = Repo(getcwd()) #...
@Byron I'm not sure if this needs to be encapsulated in a function... but what I can say is that this functionality isn't always immediately obvious and the documentation on...
No worries @midnighter :)