Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I saw this comment in git many times. What does it mean actually?

P.S. for those who are not native English speakers

share|improve this question

3 Answers

up vote 24 down vote accepted

It means to increment the version number to a new, unique value.

share|improve this answer

from: A successful Git branching model:

$ git checkout -b release-1.2 develop
Switched to a new branch "release-1.2"
$ ./bump-version.sh 1.2
Files modified successfully, version bumped to 1.2.
$ git commit -a -m "Bumped version number to 1.2"
[release-1.2 74d9424] Bumped version number to 1.2
1 files changed, 1 insertions(+), 1 deletions(-)

After creating a new branch and switching to it, we bump the version number. Here, bump-version.sh is a fictional shell script that changes some files in the working copy to reflect the new version. (This can of course be a manual change—the point being that some files change.) Then, the bumped version number is committed.

share|improve this answer
This article describes a fantastic way to work with git, by the way. Very organized and streamlined. I recommend to everyone. – pilau Feb 3 at 9:02

It means incrementing the current version number by 1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.