That’s not how you check out a branch in Git. You can’t clone a single branch, you clone the whole repository and then check out a branch inside it. Try this:
- Code: Select all
tsessebe:~ cwalther$ git clone https://github.com/H-uru/moul-scripts
Cloning into moul-scripts...
remote: Counting objects: 1319, done.
remote: Compressing objects: 100% (828/828), done.
remote: Total 1319 (delta 642), reused 1164 (delta 489)
Receiving objects: 100% (1319/1319), 2.32 MiB | 362 KiB/s, done.
Resolving deltas: 100% (642/642), done.
tsessebe:~ cwalther$ cd moul-scripts/
tsessebe:~/moul-scripts cwalther$ git checkout python27
Branch python27 set up to track remote branch python27 from origin.
Switched to a new branch 'python27'
phoenix wrote:anyone know what happened to the plasma engine based on python 2.3?
Nothing, basically. It’s still here if you compile with Visual Studio 2003 (at least from the OpenUru.org codebase – I haven’t tried H-uru). The trouble, as far as I can see, is that compiling CyPython 2.3 with Visual Studio 2010 (possibly also 2008) is hard – at least I gave up when it still crashed even after fixing the obvious problems.