User Tools

Site Tools


wiki:development:nxlib-upstream

This is an old revision of the document!


Updating NX libs from NoMachine Upstream

The package nxcompshad will be used for example…

Update "upstream" branch

  • get nxcompshad.git from X2go Git:
$ git clone ssh://x2go@code.x2go.org:32032/srv/git/code.x2go.org/nxcompshad.git
Cloning into nxcompshad...
remote: Counting objects: 235, done.
remote: Compressing objects: 100% (222/222), done.
remote: Total 235 (delta 138), reused 0 (delta 0)
Receiving objects: 100% (235/235), 109.78 KiB, done.
Resolving deltas: 100% (138/138), done.
  • Switch to “upstream” branch
nxcompshad$ git checkout upstream
Branch upstream set up to track remote branch upstream from origin.
Switched to a new branch 'upstream'
  • replace old source files with new version from NoMachine upstream
  • check changes with “git status”, if needed, add new files to upstream branch of Git project
  • commit changes and tag new upstream version
git commit -a -m "Imported upstream version <upstream-version>"
git push origin upstream
git tag -s <upstream-version> -m "Upstream version <upstream-version>"
git push --tags
  • Switch back to master branch
nxcompshad$ git checkout master
Switched to branch ''master''

Update ''master'' branch

wiki/development/nxlib-upstream.1317656402.txt.gz · Last modified: 2013/03/08 13:31 (external edit)