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

Best poker site partypoker.fr

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

BlueZ on GSoC: Accepted students announced

Yesterday Google released the accepted students for this year’s Google Summer of Code and BlueZ will be participating with 4 students:

Project: Bluetooth Replayer
Student: Anton Weber
Mentor: Anderson Lizardo

Project: OBEX Filesystem In Userspace
Student: Michał Poczwardowski
Mentor: Vinicius Gomes

Project: Implement AVRCP 1.3 Controller Role
Student: Rafael Fonseca
Mentor: Luiz Augusto von Dentz

Project: Visualization of Bluetooth traffic
Student: Thiago da Silva Arruda
Mentor: Gustavo Padovan

It is now community bonding time, where students get know their mentors and the community. We wish a great summer to all students.  :-)

 

  1. I’m joining Collabora Leave a reply
  2. BlueZ on Google Summer of Code 2012 1 Reply
  3. Bluetooth Changes for 3.3 1 Reply
  4. Talk at Automotive Linux Summit Leave a reply
  5. The week at Prague Leave a reply
  6. Bluetooth Changes for Linux 3.1 1 Reply
  7. Bluetooth SAP Client into oFono and BlueZ 1 Reply
  8. GSoC: BlueZ projects sucessfullly finished 1 Reply
  9. Bluetooth Changes for Linux 3.0 1 Reply