Habib

Results 5 comments of Habib

I have the same issue when using [Storybook](https://storybook.js.org/) to test React components. Storybook puts components into iframes.

@mojavelinux thank you for your fix. It helped me resolve an error!

@miton18 Have you tried to remove `remoteRef: 'master',` ? Pushing tags without specifying the remote ref should work (I'm not sure what it means to specify a remote ref for...

My analysis : 1. After pushing a branch ref, isomorphic-git updates the remote ref in `refs/remotes` (cf [line](https://github.com/isomorphic-git/isomorphic-git/blob/0aec2af492f5fda03742a4f2b3716848ac0e4c5d/src/commands/push.js#L288) )

Isomorphic-git's `init({gitdir:})` doesn't quite behave as Canonical Git `git init --separate-git-dir=` . Canonical Git, creates a `.git` file with a link to ``. While isomorphic-git just directly creates ``, and...