mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
255 B

  1. #!/bin/bash
  2. touch .gitignore
  3. sort -u .gitignore - > .gitignore.new << EOT
  4. build
  5. config
  6. download
  7. smap.cfg
  8. src.*
  9. src
  10. EOT
  11. mv .gitignore.new .gitignore
  12. git-init
  13. git-add Documentation architecture misc package scripts target .gitignore
  14. git-commit -m 'Init'