Is there any way to incrementally build commit messages in git? -


i'm wondering if possible build git commit messages incrementally, documenting i'm doing make code changes:

  1. check out , begin work
  2. enter commit message title (i.e. summary)
  3. make code change
  4. update commit message describe change
  5. repeat 3 , 4 until commit ready

is there mechanism built git this?

git commit can take commit message file using -f option. so, can this:

# work $ echo 'did work' > commit-msg.txt # more work $ echo 'did more work' >> commit-msg.txt $ git commit -f commit-msg.txt 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -