Hi
Are there any way to read the awx change/diff per docker release/tag?
Now I check github closed pull request and if there are an new awx relese/tag after they should be included.
Regards
Christer
Hi
Are there any way to read the awx change/diff per docker release/tag?
Now I check github closed pull request and if there are an new awx relese/tag after they should be included.
Regards
Christer
Hey Christer–
Are there any way to read the awx change/diff per docker release/tag?
yep!
for commit changes use git log $oldest_branch..$newest_branch
for a diff of code changes use git diff $oldest_branch..$newest_branch
Now I check github closed pull request and if there are an new awx relese/tag after they should be included.
git checkout abc123
(this will put that commit at the top of your tree)git describe --first-parent
, this will return a version string in the format:1.0.X-Y-abc123
X will be the particular point release (as tagged in github) and Y will be the # of commits after that release as happened.
So if it was 1.0.2-34-abc123
, it would not be in a tagged release yet.
But if it is 1.0.1-234
, it should be in release 1.0.2.