Skip to content

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
Bumps [rubyzip](https://github.com/rubyzip/rubyzip) from 1.2.2 to 2.3.0.
- [Release notes](https://github.com/rubyzip/rubyzip/releases)
- [Changelog](https://github.com/rubyzip/rubyzip/blob/master/Changelog.md)
- [Commits](rubyzip/rubyzip@v1.2.2...v2.3.0)

Signed-off-by: dependabot[bot] <support@github.com>
…-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