On mailing list I saw recomendations for gitup. Should be /usr/ports and /var/db/ports removed and than run gitup -v 1 ports
for example?
Some notes about gitup(1):
*
/var/db/gitup is default list location for gitup
*
/usr/local/etc/gitup.conf is where you can change gitup default config.
*
git.freebsd.org
is the default host.
* Since 0.90_1 gitup is considered stable.
* Don't mix gitup and Git
/usr/ports is the target directory:
IF
/usr/ports does not exist THEN it clones the repo.
IF
/usr/ports exists THEN it'll pull down the latest commit.
443 is the default port. gitup relies on 443 for Smart HTTP over HTTPS
What's Smart HTTP
Git has different transfer protocol types:
1.
git:// : unauthenticated access.
2.
ssh:// : authenticated access.
3.
Smart HTTP: Both authenticated and unauthenticated access (as opposite to
dumb HTTP: prior to Git 1.6.6)
Smart HTTP
1. Smart HTTP relies on
git-http-backend CGI script (Git over HTTP).
2. Smart HTTP operates similar to ssh:// and git://, but runs over HTTPS and uses HTTP authentication.
3.
git-http-backend negotiates with client to send/receive data over HTTP.
4.
git-http-backend allows Git client to access to the Git repo over http:// and https://