mirror of
https://github.com/opnsense/core.git
synced 2026-05-28 04:34:51 -04:00
make: add merge target for "community" origin (or upstream equivalent)
(cherry picked from commit28ba22564b) (cherry picked from commitbf8545b285) (cherry picked from commit469b57f3db)
This commit is contained in:
parent
46c3d9f339
commit
1b22d8a1b8
2 changed files with 5 additions and 0 deletions
|
|
@ -116,3 +116,4 @@ TESTDIR?= ${.CURDIR}/src/opnsense/mvc/tests
|
|||
CORE_MAINS= master main
|
||||
CORE_MAIN?= ${CORE_MAINS:[1]}
|
||||
CORE_STABLE?= stable/${CORE_ABI}
|
||||
CORE_UPSTREAM?= community
|
||||
|
|
|
|||
|
|
@ -134,6 +134,10 @@ push:
|
|||
@${GIT} push
|
||||
@${GIT} checkout ${CORE_MAIN}
|
||||
|
||||
merge: ${CORE_MAIN}
|
||||
@${GIT} fetch ${CORE_UPSTREAM}
|
||||
@${GIT} merge ${CORE_UPSTREAM}/${CORE_MAIN}
|
||||
|
||||
checkout:
|
||||
.for DIR in ${.CURDIR}/src
|
||||
.if exists(${DIR})
|
||||
|
|
|
|||
Loading…
Reference in a new issue