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

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -