9c0c6bd41788bc2c30652f391795d332203a08e3
4bea2b82a9c1454f6027c9665e7d1d8be83d1a2a
d0a24e1af9ec8aa74ad2e350c0aacce5771e5f38
Adding the mentioned document
1 new commit added
I've merged: https://fedoraproject.org/wiki/How_to_be_a_successful_contributor and https://fedoraproject.org/wiki/Subprojects to make only one document
x3mboy let's get this clean up in git and squash it down to one commit and eliminate the unneeded duplicate commit.
I suggest this set of steps:
git remote -v
You are looking for something like the line labeled upstream below:
upstream ssh://git@pagure.io/Fedora-Council/council-docs.git (fetch) upstream ssh://git@pagure.io/Fedora-Council/council-docs.git (push)
This shows that the name upstream is mapped to the upstream repo.
upstream
If you don't have this, get it by running
git remote add upstream ssh://git@pagure.io/Fedora-Council/council-docs.git
Now fetch the upstream data. git fetch upstream
git fetch upstream
Now let's rebase. Start by going to your PR branch. Then run git rebase -i upstream/master
git rebase -i upstream/master
You'll get an editor with lines like this:
pick d0a24e1 Adding the tmp Ambassador's reps pick 4bea2b8 Adding collaboration.adoc pick 9c0c6bd Merging 2 pages about collaboration
Modify it to look like this
d d0a24e1 Adding the tmp Ambassador's reps pick 4bea2b8 Adding collaboration.adoc s 9c0c6bd Merging 2 pages about collaboration
You'll need to modify the commit message.
git push -f
At this point ping @mattdm and others for feedback on your text.
Pull-Request has been closed by x3mboy
Adding the mentioned document