--
You received this message because you are subscribed to the Google Groups "SIP.js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sip_js+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sip_js/cc8752b8-5242-4c54-a840-65141ce4a4e1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I was able to check out the correct commit. These "branches" are actually tags, but you can still check them out with the '-b' argument (although this may be dependent upon git version).
You can (hopefully) just clone the repo without the -b argument (so just git clone https://freeswitch.org/stash/scm/fs/freeswitch.git) then once inside the repo run "git fetch --tags" and hopefully you should see the correct list of tags, which you can then check out what you want. Absolute worst case, the commit hash for 1.5.final is 6a2fc5e0f799b853e7f709298489b6179c1676d7 , you can just clone it without the -b argument then check that out, although I hope it doesn't come to that.
Good luck,
James
[root@fs src]# git --version
git version 1.8.3.1
[root@fs src]# git clone -b v1.5.final https://freeswitch.org/stash/scm/fs/freeswitch.git
Cloning into 'freeswitch'...
remote: Counting objects: 264888, done.
remote: Compressing objects: 100% (52509/52509), done.
remote: Total 264888 (delta 207358), reused 262286 (delta 205098)
Receiving objects: 100% (264888/264888), 114.06 MiB | 15.16 MiB/s, done.
Resolving deltas: 100% (207358/207358), done.
Note: checking out '6a2fc5e0f799b853e7f709298489b6179c1676d7'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name