Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Ensure core.autocrlf is set to true or input . Line endings on GitHub are LF only, not CRLF!

Instructions

Make sure anything on the current branch has been saved, either through commit or stash.

...

Code Block
git status  # Working tree should be clean, otherwise save or discard the modified file(s)
git checkout main
git pull
git submodule update --remote
git checkout -b new-branch-name

...