Skip to content
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

Dev #5

Open
wants to merge 42 commits into
base: master
Choose a base branch
from
Open

Dev #5

wants to merge 42 commits into from

Conversation

juliaputko
Copy link
Contributor

No description provided.

dependabot bot and others added 12 commits December 31, 2020 02:19
…-1.10.10

Bump nokogiri from 1.10.4 to 1.10.10
…-1.11.0

Bump nokogiri from 1.10.10 to 1.11.0
Merge up with what was on pender...
@jklymak
Copy link
Member

jklymak commented Mar 26, 2022

Hi julia. You still have a bunch of untested commits in here. If we merge this bad things will happen to the repo. See https://stackoverflow.com/questions/16306012/github-pull-request-showing-commits-that-are-already-in-target-branch and the answer that explains how to do a rebase.

@juliaputko
Copy link
Contributor Author

juliaputko commented Mar 28, 2022 via email

@jklymak
Copy link
Member

jklymak commented Mar 29, 2022

Almost:

git fetch origin
git fetch upstream
git checkout dev
git rebase upstream/master
# if that goes well:
git push origin/dev --force-with-lease # maybe with-lease?  I dunno, I never do that ;-). Hmm, but [https://itnext.io/git-force-vs-force-with-lease-9d0e753e8c41](this) says to use it.

@jklymak
Copy link
Member

jklymak commented Mar 29, 2022

@juliaputko
Copy link
Contributor Author

juliaputko commented Mar 29, 2022 via email

@jklymak
Copy link
Member

jklymak commented Mar 29, 2022

OK, lets start over.

First copy the files you have changed somewhere else...

Make a new branch and force it to upstream/master

git checkout -b fresh
git reset --hard upstream/master

Now add back one file you have changed. Do a git diff and you should only see the changes in your file.

If you have added a completely new file that was not on master:

git add path/to/your/new/file

Now do

git commit -a -m "ENH: Julia's new version"
git push origin fresh

and make a pull request. You should only have the new commit in the pull request. OK, you can prob scratch that pull request, but then do the same for all of your changes and make a pulse request from that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants