Git Fundamentals
Simple cheatsheet for me to get started tracking freebsd and making changes to the codebase. Requirements: git, git arc
Tracking the Source Tree Copy local repository git clone git@github.com:dumrich/freebsd-src.git Set Upstream Upstream is the original codebase, usually set as a remote repository
git remote add upstream https://git.freebsd.org/src.git Show recent commits Show a list of recent commits with some other information
git log Checkout a branch You want to work on a feature locally.