GIT

From ArmadeusWiki
Revision as of 01:18, 8 December 2009 by Jorasse (Talk | contribs)

Jump to: navigation, search

We have migrated our Source Code Management tool to GIT scm. Therefore the Armadeus software release 3.1 is the last one available under SVN management tool. This page aims to help you to use our new GIT tool.

Install GIT

Install the following packages if needed:

git-core gitk git-gui

How to use GIT (for everyone)

Tutorials

  1. GIT-SVN Crash course
  2. Everyday GIT With 20 Commands Or So
  3. GIT website

Developpers

  • Get the Armadeus GIT/SF repository in the armadeus directory (will be created):
Note Note: This is the Read Only method for people wanting to get the latest features. You won't be able to "push" your modifications directly (send us a patch instead).
$ git clone git://armadeus.git.sourceforge.net/gitroot/armadeus/armadeus armadeus
  • Before beginning to do your modifications don't forget to update your view:
 $ git pull

Armadeus integrators

  • Get the GIT/SF repository in Read/Write mode (for integrators only) in the armadeus directory (will be created):
$ git clone ssh://USER@armadeus.git.sourceforge.net/gitroot/armadeus/armadeus armadeus

How to use GIT (Armadeus integrators)

  • Before the first commit, define your global personnal data:
$ git config --global user.name "James Bond"
$ git config --global user.email "james.bond@007.com"
  • If you want colors:
$ git config --global color.diff auto
$ git config --global color.status auto
$ git config --global color.branch auto
  • Do your changes and commit to your local repository (here add fileorpath):
$ git add fileorpath
$ git commit -m 'Explain what I changed'
or 
$ git commit -a -m 'Explain what I changed'        (if you have local modifications (=not versioned files) and wants GIT to ignore them)
  • Update your repository to the latest version on SF:
$ git pull
  • If git pull fails with an error: "Untracked working tree file '{SOMEFILE}'"
$ rm -rf {SOMEFILE}
$ git pull
  • If you have modified some armadeus files and want to revert your changes
$ git clean -dfx
$ make apf9328_defconfig or make apf27_defconfig
  • Push your changes to SF:
$ git push
  • Tag a revision:
$ git tag -m "Creates TAG for Armadeus 3.1 release" release-3.1
$ git push --tags origin master

GIT to do list

  • To update to support git:
  1. release/change.sh
  2. buildroot/target/device/armadeus/linux/kernel-patches/move-patches.sh