
bosman wrote:
Hi!
Many thanks for the work!
However I get some problems getting the repository.
I have implemented the source term, you can get the experimental sfepy branch by:
git clone git://github.com/rc/sfepy-terel.git
When I do this I get!
remote: Counting objects: 4270, done. remote: Compressing objects: 100% (1293/1293), done. remote: Total 4270 (delta 2955), reused 4270 (delta 2955) Receiving objects: 100% (4270/4270), 8.25 MiB | 185 KiB/s, done. Resolving deltas: 100% (2955/2955), done. warning: remote HEAD refers to nonexistent ref, unable to checkout.
There is only a hidden file structure where the files should be, any ideas why this didn't work.
The problem is that I uploaded the "terel" branch only, but not the master branch. I am in process of learning git :)
This works for me:
$git clone git://git.sympy.org/sfepy.git Initialized empty Git repository in /home/share/software/packages/sfepy/.git/ remote: Counting objects: 4221, done. remote: Compressing objects: 100% (1377/1377), done. remote: Total 4221 (delta 2881), reused 4151 (delta 2822) Receiving objects: 100% (4221/4221), 8.29 MiB | 967 KiB/s, done. Resolving deltas: 100% (2881/2881), done. $cd sfepy $git branch terel $git checkout terel Switched to branch "terel" $git remote add -t terel terel-origin git://github.com/rc/sfepy-terel.git $git pull terel-origin
Ondrej, how to setup a repository on github, that contains only terel (and master?) branches, but no other branches I have locally, so that 'git clone' works?
r.