Posts: 4,061
Joined: Oct 2007
Reputation:
90
zag
Team-Kodi Member
Posts: 4,061
- Updated with how to squash commits
Posts: 183
Joined: Oct 2013
Every post I read from you impresses me more and more.
Posts: 4,061
Joined: Oct 2007
Reputation:
90
zag
Team-Kodi Member
Posts: 4,061
Added some info to the first post on "Amend to last Commit" feature in tortoise Git.
Very useful to quickly squash a number of commits.
Posts: 15
Joined: May 2015
Reputation:
0
I only started learning about github a couple weeks ago, and I am trying to use it for my own personal repository. I have all my files added, and I am able to update the repo. My issue I can't seem to get Kodi to recognize the zip file that is stored in the repo, and I believe I have everything set up properly according to the tutorials I have read.
Do you have any documentation for using github with Kodi?
Posts: 17,859
Joined: Jul 2011
Reputation:
371
2015-07-16, 09:08
(This post was last modified: 2015-07-16, 09:09 by Martijn.)
it's just a name. it could be "origin / master" or " whateveriliketocallit / master"
HEAD means latest commit at that moment. So at the time of pulling "HEAD" becomes "remote" as a name. Once you rebase you do this to the HEAD of "remote".
Posts: 17,859
Joined: Jul 2011
Reputation:
371
HEAD can also mean some one else his branch.
Posts: 4,545
Joined: Jun 2015
Reputation:
269
Just raised my first PR, thanks Zag for this guide. Getting onto the Kodi merry-go-round of changes is rather daunting!!
Perhaps a silly question - I have my fork of the repository, there are other commits happening as we speak, some of which I would like to include in my version of the code because we are looking at similar areas. Is there a way to merge them into my fork, in the hope that they will get merged into master before my work does? Do I just cut and paste them in? Or should I stay well away from areas other are changing?
Posts: 4,545
Joined: Jun 2015
Reputation:
269
Thanks Razze, I can see that I need to keep up with master as best I can, but what about other pull requests that have not yet been merged?
To be specific there are a few of us looking at music library changes - yourself, evilhamster and now me. I hope and expect your PR commits will be merged, meanwhile my changes (improvements for classical music) are going to take me longer to complete let alone get them accepted. Not sure how best to hit a moving target? I have cut and pasted some changes into my code, but wondered if there was a way to merge selected PRs into my WIP repository? How can we best work together?