Using Git

 

If you need to clone a git repository you need to use the following command:

git clone git://git.kernel.org/pub/scm/bluetooth/bluez.git

To create a new repo from the scratch, first run:

git init

Then:

git add .

git commit

To create the initial git commit for this repo

To commit, after make your changes with your favorite editor do

git add file1 file2 file3 …

git commit

If you want to commit all the changes you made use

git commit -a

To check the changes before commit:

git diff

If you  pass the –stat option to ‘git diff’ you will see a summary of lines changed by file.

To see the commit list

git log

If you pass the -p option the diff of the commit will be shown as well. For other logs, like commit by developer you can use ‘git shorlog’

If you wanna update you local tree with the origin tree, then

git pull origin

This will automatically merge your local tree with the new commits from the origin tree.

 

Recent Posts

Bluetooth Changes for Linux 3.9

The 3.9 cycle in the Bluetooth subsystem was a way more calm than the previous ones. 49 non-merge patches were pushed upstream through bluetooth-next this time. The bulk of changes for this release comes from Johan Hedberg. Along with many fixes to the HCI Management code he also added support for 32 and 128 its UUID in the EIR data.

Other than that we only have fixes and clean ups from Andre Guedes, Andrei Emeltchenko, Gustavo Padovan, Rami Rosen and Szymon Janc.

One can always see all Bluetooth commits in the 3.9 with the following command line:

git shortlog –no-merges v3.8..v3.9-rc1 — net/bluetooth/ include/net/bluetooth/ drivers/bluetooth/

The 3.10 release is going to be a busy release for Bluetooth subsystem,so stay tuned!

  1. The big changes of BlueZ 5 Leave a reply
  2. Bluetooth Changes for Linux 3.8 3 Replies
  3. BlueZ on GSoC: Accepted students announced 3 Replies
  4. I’m joining Collabora Leave a reply
  5. BlueZ on Google Summer of Code 2012 1 Reply
  6. Bluetooth Changes for 3.3 Leave a reply
  7. Talk at Automotive Linux Summit Leave a reply
  8. The week at Prague Leave a reply
  9. Bluetooth Changes for Linux 3.1 Leave a reply