Difference between revisions of "Development"
From Syslinux Wiki
(another s/cogito/git/ change) |
m (cosmetic change) |
||
Line 9: | Line 9: | ||
git clone git://git.kernel.org/pub/scm/boot/syslinux/syslinux.git working-directory | git clone git://git.kernel.org/pub/scm/boot/syslinux/syslinux.git working-directory | ||
− | You can then make changes and "git commit" them to your own repository, thus maintaining a parallel branch of development. Furthermore, you can use the command "git pull" to update your tree with upstream changes: | + | You can then make changes and "<tt>git commit</tt>" them to your own repository, thus maintaining a parallel branch of development. Furthermore, you can use the command "<tt>git pull</tt>" to update your tree with upstream changes: |
git pull | git pull | ||
− | The gitk tool will show you a visual history of the repository. | + | The "<tt>gitk</tt>" tool will show you a visual history of the repository. |
− | For more information about GIT, see an overview, the tutorial, or the man pages. | + | For more information about GIT, |
+ | see an overview, | ||
+ | the tutorial, | ||
+ | or the man pages. |
Revision as of 08:01, 27 September 2007
Tracking SYSLINUX development with GIT
The following link points to the status page of the official development tree:
http://git.kernel.org/?p=boot/syslinux/syslinux.git;a=summary
To clone the repository for your own development, install the git software package, and run:
git clone git://git.kernel.org/pub/scm/boot/syslinux/syslinux.git working-directory
You can then make changes and "git commit" them to your own repository, thus maintaining a parallel branch of development. Furthermore, you can use the command "git pull" to update your tree with upstream changes:
git pull
The "gitk" tool will show you a visual history of the repository.
For more information about GIT, see an overview, the tutorial, or the man pages.