[WIP] Update gitlab and gitlab-shell repos in Makefile
AFAIK, currently there is no reference how to update the source files of gitlab
and gitlab-shell
. I gave this a brief test and it works. If anyone can also test this it would be cool. If we decide to merge it, a section in README will be added as well.
Merge request reports
Activity
Nice idea @axil . Maybe do
git pull --ff-only
(or whatever it's called) to avoid unwanted git messes?I can see
make update
failing quickly if your working area is in the middle of something, which I think is good. You changed something,make update
fails, you fix it. No magic.Am I right about
make update
failing quickly?Added 2 new commits:
- 2d05314c - Add --ff-only for pull.
- 1101a3a3091 - Add an update section in README.
Added 1 new commit:
- 01378040 - Add an update section in README.
I updated it to use
--ff-only
and tested it but I stumbled on another issue. Although the pull is successfully performed,gitlab/.bundle
is not invoked. Also running it alone, returnsmake: 'gitlab/.bundle' is up to date.
. I'm not very familiar with makefiles, is there something I'm missing?Added 1 new commit:
- b8c5b321 - Fix typo leading entering in wrong directory.
Thanks @axil !