en:uhsdr_dev:git

This is an old revision of the document!


  • The easiest approach is to donload the zipped UHSDR source code from Github UHSDR repository and unpack.
  • If using Eclipse: create a work space pointing at the local directory where UHSDR has been unpacked. Check Eclipse settings after that (active build etc.)
  • Download Github Desktop. The .exe file is the executable (portable) program and does not need installation
  • Provide your github username and password, clone the Github UHSDR repository
  • Optional: Create a local branch for your source code changes
  • If using Eclipse: create a work space pointing at the local directory where UHSDR has been unpacked. Check Eclipse settings after that (active build etc.)

A git cheat sheet can be found here

Fork UHSDR to your own remote github repo

Pull UHSDR from Github

  • If git is not intalled on your system:
    $apt-get install git
  • Clone UHSDR repository: Go to the directory where you want to store the GIT clone, then create a local clone. Use the URL for your github fork, e.g.
    $git clone https://github.com/DF9TS/UHSDR-1
  • You now have a local clone of your fork in the current local directory
  • Check the remote repos assigned
    git remote -v
  • Add DF8OE UHSD repo as upstream remote repo so that you can esaly synch it with your fork:
    git remote add upstream https://github.com/df8oe/UHSDR
  • Check with “git remote -v” that upstream has been added. You now have two remote repos: “origin” which is your fork on github, and “upstream” which is the DF8OE master repo

Rebase: Synchronising your fork with UHSDR DF8OE repo

  • You want to synchronise your forked UHSDR with the DF8OE main repo from time to time to include the latest changes of UHSDR into your fork.
  • For that use
     git pull --rebase upstream active-devel
  • Your local fork is now synchronised with UHSDR DF8OE repo
  • Next you need to push these changes to your remote github repo
    git push origin active-devel
  • Your github fork is now synchronised with DF8OE UHSDR main repo

Creating branches for tests and experiments

Before creating any new branch please pull the changes from upstream as explained above. Make sure your forked repo is up to date.

  • Create the branch on your local machine and switch in this branch :
    $ git checkout -b [name_of_your_new_branch]
  • Change working branch :
    $ git checkout [name_of_your_new_branch]
  • Push the branch from local repo onto remote github :
    $ git push origin [name_of_your_new_branch]
  • When you want to commit something in your branch, be sure to be in your branch. Add -u parameter to set upstream. To check current branch use
    $ git branch
  • Add a new remote for your branch :
    $ git remote add [name_of_your_remote]
  • Push changes from your commit into your branch :
    $ git push [name_of_your_new_remote] [name_of_your_branch]
  • Update your branch when the original branch from official repository has been updated :
    $ git fetch [name_of_your_remote]
  • Then you need to apply to merge changes, if your branch is derivated from develop you need to do :
    $ git merge [name_of_your_remote]/develop
  • Delete a branch on your local filesystem :
    $ git branch -d [name_of_your_new_branch]
  • To force the deletion of local branch on your filesystem :
    $ git branch -D [name_of_your_new_branch]
  • Delete the branch on github :
    $ git push origin :[name_of_your_new_branch]

Use local UHSDR clone in Eclipse

See also GNU MCU Eclipse workspace preferences

Option: Create work space
  • Good if you need new Eclipse settings specially for this Github clone
  • There will be a new Eclipse work space assigned to this import. The new work space can have its own Eclipse settings. Everytime you switch to this work space Eclipse will change all settings accordingly.
  • Start Eclipse. File→Switch workspace→Other
  • Enter directory of local UHSDR clone.
  • When using this new work space Eclipse will use settings of UHSDR clone. So please check Eclipse settings (active build, ..)
Option: Import UHSDR into eclipse
  • Good if this Github clone should work under your standard Eclipse settings
  • File→Import, then General→Existing Projects into work space, hit “Next”
  • “Select root directory”. Use “browse” button and point to local github mchf root (in my case: $HOME/uhdsrd/UHSDR/mchf-eclipse/)
  • Hit “Finish”

The heart of any open source project is the contributions by individuals. Source code for the project is using git currently and can be found here. There is a good explanation of github workflow here that is worth a read before branching and hacking on the code. And an online book written directly from the git creators you can find here - or locally here.

We have specific instructions for contributors collected in guidelines for contributing.

For own developments and experiments in code you should NOT use merge/pull to integrate your changes in df8oe's active-devel. Instead use git “rebase” command, as documented on our contribution page. We had very little trouble to follow that approach for the last two years. It also has its issues but in general, once you understand how to operate it, it works quite well. The main benefit of the rebase approach is that it keeps all your “local” changes together on top of the last official release you rebased on. Opposed to the merge approach you have been running, which does mingle your changes with the external changes in the time history.

You could leave a comment if you were logged in.
  • en/uhsdr_dev/git.1521013003.txt.gz
  • Last modified: 14.03.2018 07:36
  • by df9ts_user