When I 'git status' on my sub branch, I frequently see "modified: Gemfile.lock", BUT I have never touch this file, why git always tell me it is modified??
I am developing Rails 3 application under Ubuntu machine.
|
When I ' I am developing Rails 3 application under Ubuntu machine. |
|||
|
|
|
I think it is because you ran
it will change the Gemfile.lock to tell exactly what versions of each gem your project is using so that when something breaks, you can trace back what versions of gem you were using earlier. |
|||||
|
|
I see the same thing when developing on Mac OS and Ubuntu. When I pull the code to Ubuntu machine that has Gemfile.lock created on Mac machine, and after running rails server I get Gemfile.lock modified:
Looks like not essential changes, just reordered version constraints. But quite annoying. I usually
|
|||||||
|