previous version of source code
#1
How do I pull down the previous version of source code?

git clone -b Leia git://github.com/xbmc/xbmc.git mydir

gets me the current Leia, 18.3, but I want 18.2.
Reply
#2
(2019-06-30, 15:27)jloh Wrote: How do I pull down the previous version of source code?

git clone -b Leia git://github.com/xbmc/xbmc.git mydir

gets me the current Leia, 18.3, but I want 18.2.
You need to tell git that you want to use the repository at a specific point of time, in this case it can be done by checking out a "tag"
https://github.com/xbmc/xbmc/releases

sh:
cd mydir
git checkout 18.2-Leia
Reply
#3
(2019-06-30, 16:47)asavah Wrote:
(2019-06-30, 15:27)jloh Wrote: How do I pull down the previous version of source code?

git clone -b Leia git://github.com/xbmc/xbmc.git mydir

gets me the current Leia, 18.3, but I want 18.2.
You need to tell git that you want to use the repository at a specific point of time, in this case it can be done by checking out a "tag"
https://github.com/xbmc/xbmc/releases

sh:
cd mydir
git checkout 18.2-Leia
 
Reply
#4
Thank you this worked.
Reply

Logout Mark Read Team Forum Stats Members Help
previous version of source code0