简体   繁体   中英

Output of a “git pull” what does this change mean?

I never understand the change output to the screen can someone please give me the following meaning of the follownig change in dummy terms

**Fast-forward
 build.number       |    4 ++--**

It appears that you have file called build.number in your git repository, and somebody else has changed that file upstream.

Fast-forward means when you ran git pull to get changes, your tree was untouched - you did not do any commits of your own, and thus git pull was able to update your repository without necessity to do any merges. It simply set your local branch pointer to be exactly the same as on server - this is exactly what fast-forward means.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM