Notes on this wikis workflow and what repo contains it
| Command | Description |
git rebase --abort
|
should abort the rebase operation and return to the previous state |
git reflog
|
output can show you where the rebase started |
Keep getting problem when using git that you must generate a toke
Below: I did in wsl ubuntu on windows 10. This apparently installs GitHub CLI where you can store your git credentials.
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null sudo apt update sudo apt install gh
After doing that:
In the command line, enter gh auth login, then follow the prompts.
When prompted for your preferred protocol for Git operations, select HTTPS.
When asked if you would like to authenticate to Git with your GitHub credentials, enter
This token is in the Root of Documents
Date Modified: 2022-02-09