Project

General

Profile

Actions

Git » History » Revision 2

« Previous | Revision 2/10 (diff) | Next »
Adam Sutton, 2013-02-01 11:50


Git for TVH Dummies

As I get quite a few people asking me what the right way to work with git is, in particular in relation to submitting patches upstream, I thought it might be a good idea to write a quick wiki entry to help with some common tasks.

I'm also fairly new to git, I'd only touched it occasionally before getting involved in Tvheadend, but I've now been using it solidly for about a year. So while I'm by no means an expert, I'll at least point out some of the things I've learnt over that year.

Github

Tvheadend hosts its primary repository on github, this is a useful community site as not only does it provide basic git hosting but also some useful tools for managing the project. This includes the ability for users to create public forks, submit Pull Requests (PRs) and to comment on commits and other things.

The main project page can be found at https://github.com/tvheadend/tvheadend.

If you don't intend to actively contribute to the development you can simply clone the repository for the purpose of Building and the rest of this article is probably not relevant. However should you later decide you do want to push stuff back upstream then there are some useful hints below.

Forking

The first thing you should do if you intend to actively develop and push features/fixes upstream is to create a public fork on github (you can use other services, but it won't fit as well with the general project workflow and the Team may get grumpy!).

To create the fork simply click on the fork icon: github_fork

This will create a new personal fork on github, which will allow you to publish your own changes etc.

You will also need to add an SSH key to your account to be able to push changes to your fork. If you're unsure how to do this please visit the github ssh help page.

Once that is all done you should create a clone of your repository using the SSH access URL (this will give you push access):

git clone [email protected]:USERNAME/tvheadend.git

Fixing upstream clone

If you have already cloned the upstream (tvheadend/tvheadend.git) repository and now want to create you're own github fork, while still retaining your local repository (possibly with commits you've already made). First create the github fork as above, and instead of cloning that repository do the following within your existing local repository:

git remote rename origin upstream
git remote add origin SSH_URL
git fetch origin
git branch --set-upstream master origin/master

Updated by Adam Sutton almost 12 years ago · 2 revisions