You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! mversion throw next error when I'm using -m on Windows 7.
mversion patch -m
Failed updating:
Command failed: C:\Windows\system32\cmd.exe /s /c "git tag -a v0.0.2 -m "v0.0.2""
fatal: tag 'v0.0.2' already exists
For some reasons command C:\Windows\system32\cmd.exe /s /c "git tag -a v0.0.2 -m "v0.0.2" aren't working for me.
I'm using bash-enabled terminal so if I switch from C:\Windows\system32\cmd.exe /s /c "git tag -a v0.0.2 -m "v0.0.2" to git tag -a v0.0.2 -m "v0.0.2" then it will fix this issue. Is there an ability to do it? Maybe with help of .mversionrc file ?
The text was updated successfully, but these errors were encountered:
It's failing because the git tag "v0.0.2" existed before you run mversion. Delete it (git tag -d v0.0.2) and run mversion again or create a different version.
If you just run mversion patch -m and it fails, when you run it again you're trying to create the same version as before, because when the command fails it restores the repository. Try deleting the tag or specifing a version (e.g. mversion 0.0.5 -m)
Hello! mversion throw next error when I'm using
-m
on Windows 7.For some reasons command
C:\Windows\system32\cmd.exe /s /c "git tag -a v0.0.2 -m "v0.0.2"
aren't working for me.I'm using bash-enabled terminal so if I switch from
C:\Windows\system32\cmd.exe /s /c "git tag -a v0.0.2 -m "v0.0.2"
togit tag -a v0.0.2 -m "v0.0.2"
then it will fix this issue. Is there an ability to do it? Maybe with help of.mversionrc
file ?The text was updated successfully, but these errors were encountered: