Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Just put the name of your moodle.git and integration.git remotes and run it.
- export moodlegit=me; \
- export integrationgit=origin; \
- git log --oneline $moodlegit/MOODLE_310_STABLE...$integrationgit/MOODLE_310_STABLE | \
- grep -Po "MDL-[0-9]+" | sort | uniq > /tmp/one; \
- git log --oneline $moodlegit/master...$integrationgit/master | \
- grep -Po "MDL-[0-9]+" | sort | uniq > /tmp/two; \
- diff /tmp/one /tmp/two; \
- rm -fr /tmp/one /tmp/two
Advertisement
Add Comment
Please, Sign In to add comment