Just a few notes/things to remember while using git.
Typical git process:
git pull $linkgit add .git commit -m 'v0.1'git push $link
Switch branches from master to main
git branch -m master main
If errors:
git pull --rebase
Just a few notes/things to remember while using git.
Typical git process:
git pull $linkgit add .git commit -m 'v0.1'git push $linkSwitch branches from master to main
git branch -m master mainIf errors:
git pull --rebase