New Repository

Everything about development and the OpenMW source code.
Post Reply
User avatar
Zini
Posts: 5538
Joined: 06 Aug 2011, 15:16

New Repository

Post by Zini »

From now on we will be using the OpenMW org repository on github instead of mine. That is: https://github.com/OpenMW/openmw

Developers should direct pull requests to this repository from now on and each developer also needs to adjust the URL of their upstream remote (or whatever they are using to pull from my github repository) via

Code: Select all

git remote set-url upstream https://github.com/OpenMW/openmw.git
Currently open pull requests towards my old repository does not need to be replaced.

Beyond that nothing should change. If it does, start beating on BrotherBrick, because he was the one who pushed the idea of moving the repository to the organisation.

I will begin adjusting the documentation in a bit. If you still see any references to my old repository in an hour from now, please help out with fixing that.
Last edited by Zini on 28 Mar 2014, 18:31, edited 1 time in total.
User avatar
pvdk
Posts: 528
Joined: 12 Aug 2011, 16:34

Re: New Repository

Post by pvdk »

I would like to add that the following url is correct, at least for me (and I suspect other people with read-only access):

Code: Select all

https://github.com/OpenMW/openmw.git
Oh and for people who are new to git, to modify the remote, do the following:

Code: Select all

git remote rm upstream
git remote add upstream https://github.com/OpenMW/openmw.git
git fetch upstream
User avatar
Jyby
Posts: 408
Joined: 10 Dec 2013, 04:16

Re: New Repository

Post by Jyby »

If you've forked and are working on the master branch this will bring you up to date:

Code: Select all

git checkout master
git rebase upstream/master
git push -f origin master
You only need to use the -f the first time.
User avatar
scrawl
Posts: 2152
Joined: 18 Feb 2012, 11:51

Re: New Repository

Post by scrawl »

Or in one line (can we edit that into the start post?):

Code: Select all

git remote set-url upstream https://github.com/OpenMW/openmw.git
Rebase and force-push is completely unnecessary.
User avatar
Zini
Posts: 5538
Joined: 06 Aug 2011, 15:16

Re: New Repository

Post by Zini »

Edit done.
User avatar
Jyby
Posts: 408
Joined: 10 Dec 2013, 04:16

Re: New Repository

Post by Jyby »

scrawl wrote:Or in one line (can we edit that into the start post?):

Code: Select all

git remote set-url upstream https://github.com/OpenMW/openmw.git
Rebase and force-push is completely unnecessary.
Ah thanks for that!

It could be useful for rebasing different branches though. i.e. test branch and master
swick
Posts: 96
Joined: 06 Aug 2011, 13:00

Re: New Repository

Post by swick »

The github irc bot still uses the old repo.
User avatar
scrawl
Posts: 2152
Joined: 18 Feb 2012, 11:51

Re: New Repository

Post by scrawl »

And "fork me on github" link on openmw.org.
User avatar
scrawl
Posts: 2152
Joined: 18 Feb 2012, 11:51

Re: New Repository

Post by scrawl »

corristo
Posts: 495
Joined: 12 Aug 2011, 08:29

Re: New Repository

Post by corristo »

There's something wrong with permissions. I can't push nor accept pull requests in OS X deps repo (https://github.com/OpenMW/homebrew-openmw/).

That's kinda weird since I'm in "Core team" group.

UPD: disregard that, that's the pubkey issues, and PR can't be merged from web because of, you know, conflicts.
Post Reply