GIT.txt 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ngIRCd - Next Generation IRC Server
  2. http://ngircd.barton.de/
  3. (c)2001-2011 Alexander Barton and Contributors.
  4. ngIRCd is free software and published under the
  5. terms of the GNU General Public License.
  6. -- GIT.txt --
  7. The source code of ngIRCd is maintained using git, the stupid content
  8. tracker.
  9. I. Getting the source code
  10. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  11. To access the source tree anonymously, run:
  12. $ git clone git://ngircd.barton.de/ngircd.git
  13. Thereby a new folder "ngircd" will be created containing all the individual
  14. source files.
  15. The newly created directory ("ngircd") is the "working directory", all
  16. git commands will be executed from within this directory in the future.
  17. Please note: When checking out a fresh copy of ngIRCd using git, the
  18. configure script doesn't exist; you have to run the autogen.sh shell script
  19. (which is included in the source tree) to generate it. This requires you to
  20. have GNU automake and GNU autoconf installed on your system. Please see the
  21. file INSTALL for details!
  22. To update the git tree:
  23. $ git pull
  24. This retrieves all changes and merges them into the current branch.
  25. II. Contributing
  26. ~~~~~~~~~~~~~~~~
  27. Patches should be sent to the ngircd mailing list. List homepage:
  28. http://arthur.barton.de/mailman/listinfo/ngircd-ml
  29. If you do not want to send them to the list, you can also mail them
  30. to Alex Barton, <alex@barton.de>.
  31. III. Write Access
  32. ~~~~~~~~~~~~~~~~~
  33. If you want to contribute a couple of patches and write access to the git
  34. repository would be handy, please contact Alex Barton, <alex@barton.de>.