[SciPy-Dev] git workflow for scipy?

Ralf Gommers ralf.gommers at googlemail.com
Mon Mar 14 22:49:48 EDT 2011


On Tue, Mar 15, 2011 at 10:35 AM, Warren Weckesser
<warren.weckesser at enthought.com> wrote:
> Is there a "gitwash" document set up for scipy?

http://docs.scipy.org/doc/numpy/dev/
Should be pretty much the same for numpy and scipy.

> I'm trying to apply the
> workflow outlined for nipy here:
>
>
> http://nipy.sourceforge.net/nipy/stable/devel/guidelines/gitwash/development_workflow.html
>
> At the moment, I'm updating my master branch.  Here's a transcript:
>
> none:scipy warren$ git branch -a
>   master
> * ticket1328
>   remotes/origin/HEAD -> origin/master
>   remotes/origin/maintenance/0.5.2.x
>   remotes/origin/maintenance/0.6.x
>   remotes/origin/maintenance/0.7.x
>   remotes/origin/maintenance/0.8.x
>   remotes/origin/maintenance/0.9.x
>   remotes/origin/master
>   remotes/origin/ticket1328
> none:scipy warren$ git checkout master
> Switched to branch 'master'
> none:scipy warren$ git fetch upstream
> remote: Counting objects: 76, done.
> remote: Compressing objects: 100% (48/48), done.
> remote: Total 48 (delta 40), reused 0 (delta 0)
> Unpacking objects: 100% (48/48), done.
> From git://github.com/scipy/scipy
>  * [new branch]      maintenance/0.5.2.x -> upstream/maintenance/0.5.2.x
>  * [new branch]      maintenance/0.6.x -> upstream/maintenance/0.6.x
>  * [new branch]      maintenance/0.7.x -> upstream/maintenance/0.7.x
>  * [new branch]      maintenance/0.8.x -> upstream/maintenance/0.8.x
>  * [new branch]      maintenance/0.9.x -> upstream/maintenance/0.9.x
>  * [new branch]      master     -> upstream/master
> none:scipy warren$ git merge upsteam/master
> fatal: 'upsteam/master' does not point to a commit
>
> So that last command did not work.  Where did I go wrong?

You spelled upstream as upsteam.

Cheers,
Ralf



More information about the SciPy-Dev mailing list