-
Content Count
29 -
Joined
-
Last visited
Reputation Activity
-
rsa4046 reacted to Oleg Vinichenko in Quick simple question re: portage sync and kits
this will bring meta-repo up-to-date.
-
rsa4046 reacted to Oleg Vinichenko in How to change branch of kits from meta-repo
ego sync does not support this, if you changed branch manually, use git pull and git submodule update inside xorg-kit directory.
-
rsa4046 reacted to cafaia in How to change branch of kits from meta-repo
Hello, Oleg!
Thank you very much for the information!
I created a script with this:
#!/bin/sh cd /var/git/meta-repo/ git pull git submodule update cd /var/git/meta-repo/kits/xorg-kit/ git checkout master git pull cd /root/ chown -R portage:portage /var/git/meta-repo And now everything is going well! Thanks so much for the help!