I'm on main branch of /src tree.
Can I simply checkout to releng/13.0 by issuing following command:
and then pull/update releng/13.0?
Question 1. Is that all, or there're some missing steps?
Question 2. Now, suppose I checkout the releng/13.0. Is the following command is the right way to check out the main branch:
BTW. I know I should check it myself, but I'm on dying bandwidth!
P.S. This is my git global config:
git clone -o freebsd https://git.FreeBSD.org/src.git /usr/src
Can I simply checkout to releng/13.0 by issuing following command:
git checkout releng/13.0
and then pull/update releng/13.0?
git pull --ff-only
Question 1. Is that all, or there're some missing steps?
Question 2. Now, suppose I checkout the releng/13.0. Is the following command is the right way to check out the main branch:
git pull origin main --ff-only
BTW. I know I should check it myself, but I'm on dying bandwidth!
P.S. This is my git global config:
Code:
git config --global user.name "USER"
git config --global user.email USER@HOST
git config --global pull.rebase true
git config --global fetch.prune true
git config --global diff.colorMoved