-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update lisa docs #531
Update lisa docs #531
Conversation
When I made a pull request, it said it had merge conflicts. Now sure I understand this ... is that supposed to happen? |
You may need to rebase your branch on top of the current main branch from tt06. One way is to reset your repo state to match the current tt06 repo state: Make sure you have a backup of your new docs version, and then: git remote add upstream https://github.com/TinyTapeout/tinytapeout-06
git fetch upstream
git reset --hard upstream/main then add + commit the new docs, and push again Another way is just to create a new branch from the main branch of tt06, and put the files there |
Man, git is always so confusing. I did those three lines (actually it said remote upstream already exists), but the other two were successful. But then it told me:
So I did git pull and it said:
Now I'm not sure if I should push the 2 commits that I had previously committed? |
This may help: https://rebase-book.com/ After git fetch upstream
git reset --hard upstream/main and adding your changes / committing, you need to git push --force-with-lease to push them to your repo, ignoring any previous history |
See, it's so confusing they have to write a whole book on just rebase! :) Okay, I will try that and see if I can get a good Pull Request, even if I have to delete my existing fork and start over. I am on a branch on a fork, not sure if that makes any difference or not. |
fdf5225
to
31e2d9f
Compare
I agree. But once you get the idea (the gist - branches are just pointers to a commit, and the commits are organized as a tree, each commit pointing to one (or more) previous commits), it actually makes sense.
Then I hope this helps! |
I believe I fixed the inconsistent format between my local and the official data sheet builds.