Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Draft release notes which should include the list of new features and bug fixes, along with limitations, known issues, credits, etc.

IMP: All problems/fixes in release notes MUST have the PR link and a possible workaround if any

Code Block
languagebash
titleUse this script to get commits since a particular date
#!/bin/bash
# to get a list of commits since <date>
git log --pretty=format:"%h - %cn, %cd : %s" --no-merges --since="2017-09-01" > commits.txt
 
# To get a list of committers since <date>
git shortlog -sne --since="10 Aug 2017"

...