sbt-release icon indicating copy to clipboard operation
sbt-release copied to clipboard

interactive commit

Open backuitist opened this issue 12 years ago • 2 comments

Allow the user to commit from the SBT shell:

> release with-defaults
[info] Working directory is dirty:
[info] 
[info]  ?? project-a/

Enter a message to add everything and commit: bla bla bla

backuitist avatar May 09 '13 12:05 backuitist

This feature can be disabled with the interactiveCommit attribute

backuitist avatar May 09 '13 12:05 backuitist

This issue is still not fixed

Add: Imo this issue is critical to be fixed as this will break anyone who is using SBT in continuous delivery pipeline.

Add: So it turns out if you open sbt console and run:

release with-defaults

works great

if you run "sbt release with defaults" will fail.

You will need to run with:

sbt "release with-defaults" #this works

helenzBV avatar Aug 01 '18 02:08 helenzBV