issue-83 Add scroll to comments button #115
Reference in New Issue
Block a user
Delete Branch "kurt/issues-83"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hey @Yash-R,
I was having a closer look at the unrelated changes in your PRs #114 and #112, and I noticed that the changes to the yarn lock and the submodels were mixed into different commits, hard to fix easily so I did some surgery, I'll explain the process so you can follow along, but I think the problem likely came from you staging all of the changes without reviewing them before you made a commit. Are you using the git command line or some kind of git GUI helper?
If you're using vscode it has some pretty handy visualisations to see what's staged and what isn't, but in general you should only stage and commit changes relevant to the work you're doing. If you see that changes to the submodule that's a bit of a special case and running
git submodule update --recursive --remoteshould fix it most of the time, basically bring the commit of the remote inline with your local instance for the submodules (btw handly link to submodules in case you're not sure what they are ).Here's how I removed the unrelated changes from your PR
git checkout -b kurt/issue-83(mostly done for safety reasons so I didn't have to force push on your branch)git reset --soft HEAD~3One downside of what I've done is it completely nukes the git history, so now these changes are counted as my commit, If you would like you can follow the above steps yourself or we can merge this PR. Up to you?
I'm going to decline your other PRs now.
Sorry for the fuss, I hope the above helps.
resolves #83
okay you can merge this PR