13.2 Updating FreeBSD from Source
Obtaining Source Code from Git
Installing Git
# pkg install git# cd /usr/ports/devel/git/
# make install cleanGit Proxy Configuration
# git config --global http.proxy http://192.168.X.X:7890 # Set Git global HTTP proxy
# git config --global https.proxy http://192.168.X.X:7890 # Set Git global HTTPS proxyPulling Source Code with Git
Pulling CURRENT
Pulling a Specific RELEASE
References
Obtaining Source Code from Compressed Archives (Convenient but Not Latest)
Starting the Build
Appendix: Resolving Conflicts
Changed File
Triggered Command
Troubleshooting and Outstanding Issues
Git: fatal: unable to update url base from redirection
fatal: unable to update url base from redirectionGit: fatal: unable to access 'https://git.FreeBSD.org/src.git/': SSL certificate problem: certificate is not yet valid
fatal: unable to access 'https://git.FreeBSD.org/src.git/': SSL certificate problem: certificate is not yet validReferences
Exercises
Last updated