You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I've been trying to run a command during the build plan that analyses change for a specific branch. The tool uses the git revision (from the master branch in this case), so it can scan all the changes that happened after that particular commit.
By running the command git rev-parse master, I'm able to get the revision I want and pass it along. However, this command produces: fatal: ambiguous argument 'master': unknown revision or path not in the working tree.
I set up bamboo locally for testing reasons, and it worked well. But running the same plan configuration in the bamboo server (created by an automation script) and using the same version (6.10.4) fails.
I'm wondering if there is a configuration I'm missing that made it work locally but didn't in the server. Any ideas?