stronk7

Untitled

Aug 21st, 2020
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # Just put the name of your moodle.git and integration.git remotes and run it.
  2. export moodlegit=me; \
  3. export integrationgit=origin; \
  4. git log --oneline $moodlegit/MOODLE_310_STABLE...$integrationgit/MOODLE_310_STABLE | \
  5. grep -Po "MDL-[0-9]+" | sort | uniq > /tmp/one; \
  6. git log --oneline $moodlegit/master...$integrationgit/master | \
  7. grep -Po "MDL-[0-9]+" | sort | uniq > /tmp/two; \
  8. diff /tmp/one /tmp/two; \
  9. rm -fr /tmp/one /tmp/two
Advertisement
Add Comment
Please, Sign In to add comment