[AEON] HOW-TO download/install/update/test Aeon from its Git repository

  Thread Rating:
  • 2 Votes - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
kulprit Offline
Senior Member
Posts: 249
Joined: Jan 2009
Reputation: 0
Post: #11
Ok, so got this all working, but I edit my own files, to say includes the international ratings mod. When i go to pull for an update i get

error: Entry '720p/DialogVideoInfo.xml' not uptodate. Cannot Merge.

Which setting do I have to change to allow it to merge. Or even so it will overwrite it if there has been a change and I can modify the file again?
find quote
djh_ Offline
Aeon Project Founder
Posts: 1,890
Joined: Jun 2007
Post: #12
Kudos for this. Cool
find quote
FernFerret Offline
Senior Member
Posts: 240
Joined: Mar 2009
Reputation: 0
Location: Indiana, USA
Post: #13
AWESOME. I've never used anything but SVN and apparently I fail at GIT by myself. I really appreciate this!


Quote:The guide is finished for the most part. I'm not sure about the Git GUI part as I have never used it. Hopefully someone else can shed some light on it. I hope this helps. Please post any questions or feedback.

Also since although I'm a zsh user, I decided for funsies on windows to use the GUI, your tutorial worked great!


--FF
(This post was last modified: 2009-04-30 10:21 by FernFerret.)
find quote
kulprit Offline
Senior Member
Posts: 249
Joined: Jan 2009
Reputation: 0
Post: #14
OK, looking through this, if i do a git checkout -m, then a git pull, would this solve the problem?
I did it, it gave a list of the files i had changed, but then there hasn't been an auriga update, so i didn't see it pull any files either.
find quote
smcnally75 Offline
Aeon Group
Posts: 981
Joined: Sep 2007
Post: #15
It's nice to see a guide on the Git GUI version as well.
find quote
yazgar Offline
Junior Member
Posts: 20
Joined: Aug 2008
Reputation: 0
Post: #16
Great job with the guide!! You know you've done good when you get a nod from,.....well,..you know who Wink

Quote:Kudos for this. Cool

lol..seriously, it would be good if the guide was made sticky or put somewhere else, just so all the hard work doesn't get lost 20 pages deeps by next week. Aeons threads move pretty fast!
find quote
rickatnight11 Offline
Senior Member
Posts: 138
Joined: Apr 2008
Reputation: 0
Location: Richmond, VA
Post: #17
kulprit Wrote:Ok, so got this all working, but I edit my own files, to say includes the international ratings mod. When i go to pull for an update i get

error: Entry '720p/DialogVideoInfo.xml' not uptodate. Cannot Merge.

Which setting do I have to change to allow it to merge. Or even so it will overwrite it if there has been a change and I can modify the file again?

This would be a "manual merge" situation, and I don't have enough experience with git to know the best procedure. (Sorry, I come from the land of Rational ClearCase.) The only thing I can think of would be to add that file to the .gitignore file so that git won't try to update it. Of course, you won't get further updates after that.

The problem is that git is trying to merge in the changes that djh has made, but it is trying to apply the delta (change) to a particular state of the file. If that state has changed, then git isn't smart enough to know if the delta will conflict with your change or not.

[04/03/2009 04:42:13PM Agent (Prashant_190023): "You are most welcome to the best democratic countries of the world -- India"] --Dell Chat
find quote
kulprit Offline
Senior Member
Posts: 249
Joined: Jan 2009
Reputation: 0
Post: #18
Have an idea for a work around for people who edit stuff.

If you do a git stash save, this will reload the last download you did, then update with a pull.
Finally do a git stash apply, and your changes should come back, going to try it now.

All worked great on the xml files i had changed, although it didn't like the change on one of the movielines.png. So resolved this and tried again, all worked great.
I have also started using tortoise git, along with git bash, so i can see in my file system how things are going.
(This post was last modified: 2009-05-01 08:56 by kulprit.)
find quote
Ritzie Offline
Senior Member
Posts: 227
Joined: Mar 2009
Reputation: 0
Post: #19
I have everything setup. Followed the directions to the tee but once I do git checkout -b auriga origin/auriga the following comes up:

xbmc@xbmc:~/.xbmc/skin/Aeon Auriga$ git checkout -b auriga origin/auriga
warning: refname 'origin/auriga' is ambiguous.
warning: refname 'origin/auriga' is ambiguous.
fatal: Ambiguous object name: 'origin/auriga'.
(This post was last modified: 2009-05-05 14:07 by Ritzie.)
find quote
GhostSeven Offline
Junior Member
Posts: 20
Joined: Aug 2008
Reputation: 0
Post: #20
Have been getting a corrupted error for days now, any ideas?

Just running standard
Code:
git clone git://github.com/djh/aeon.git

Code:
git clone git://github.com/djh/aeon.git
Initialized empty Git repository in /home/blake/sr/aeon/.git/
remote: Counting objects: 1890, done.
remote: Compressing objects: 100% (1421/1421), done.
remote: Total 1890 (delta 569), reused 1660 (delta 395)
Receiving objects: 100% (1890/1890), 209.98 MiB | 56 KiB/s, done.
Resolving deltas: 100% (569/569), done.
error: failed to read object 3ee858232279a6288ef89d87ef80b7a26f864a4e at offset 24926796 from /home/blake/sr/aeon/.git/objects/pack/pack-dfa9f71838bf538d4e72dbdd4b4b78c0f6dd8447.pack
error: failed to read object 3ee858232279a6288ef89d87ef80b7a26f864a4e at offset 24926796 from .git/objects/pack/pack-dfa9f71838bf538d4e72dbdd4b4b78c0f6dd8447.pack
fatal: object 3ee858232279a6288ef89d87ef80b7a26f864a4e is corrupted
find quote
Post Reply