maven - jgitflow error: Error starting release: Error starting release: Working tree has untracked files -
i've got monday morning kind of problem on thursday , need stackoverflow magic here.
i'm using jgitflow plugin maven in order automate of release process. unfortunately i'm hitting problem when trying start new release using mvn jgitflow:release-start
:
[error] failed execute goal external.atlassian.jgitflow:jgitflow-maven-plugin:1.0-m5.1:release-start (default-cli) on project <myprojectname>: error starting release: error starting release: working tree has untracked files
however cannot see , untracked files here (nor on master):
git status on branch develop branch up-to-date 'origin/develop'. nothing commit, working directory clean
any idea how jgitflow find untracked files?
fixed allowing untracked files:
<plugin> <groupid>external.atlassian.jgitflow</groupid> <artifactid>jgitflow-maven-plugin</artifactid> <version>1.0-m5.1</version> <configuration> <pushreleases>true</pushreleases> <allowuntracked>true</allowuntracked> </configuration> </plugin>
Comments
Post a Comment