05-18-2015, 04:25 AM
Related question about GIT. As I understand it doing a git pull will update my copy of CoreBOS. However since I do have some code customisations I would like to be able to see what the update will be before applying those to my repository so that it doesn't overwrite anything. What is the proper GIT command for that? I tried git pull --dry-run but that didn't tell me specifically which files would be changed/modified/updated, it only showed me the following:
Thank you.
Code:
Serv> git pull --dry-run
remote: Counting objects: 18, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 18 (delta 15), reused 4 (delta 1), pack-reused 0
Unpacking objects: 100% (18/18), done.
From https://github.com/tsolucio/corebos
050633e..eae8083 master -> origin/master
Thank you.