Solved FreeBSD 13 missing from base/releng

There seem to be several packages that are to git like svnlite is to svn. I do remember that gitup needed extras before being able to do git clone <url>. The git-tiny package though, works for my VERY limited purposes, git clone and git pull.
 
I do remember that gitup needed extras before being able to do git clone <url>.
Well, the net/gitup package does not contain a “git” command. It contains a “gitup” command, and that command neither knows a “clone” argument, nor does it support URLs on the command line.

gitup is not meant to be a replacement for git (nor git-lite, nor git-tiny). It is meant to be a replacement for svnup, therefore it has a usage similar to svnup. And for that specific purpose, gitup works perfectly well out of the box. See the gitup(1) manual page for details.
 
For releng/13.0 all you need to do is edit /usr/local/etc/gitup.conf and change the parameters for "release". The default gitup.conf fetches the sources for releng/11.4 (that's 11.4-RELEASE).

Just edit this bit and set branch correctly:
Code:
        "release" : {
                "repository" : "/src.git",
                "branch"     : "releng/13.0",
                "target"     : "/usr/src",
Then simply run gitup release.
 
This would be nice for having a scope for input to provide satable no. or release no. or quarterly number along with section option.
 
Back
Top