A semantic search engine for source code https://bitshift.benkurtovic.com/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 лет назад
10 лет назад
1234567891011121314151617181920212223242526
  1. bitshift
  2. ========
  3. bitshift is a semantic search engine for source code.
  4. Branches
  5. --------
  6. - `master`: working, tested, version-numbered code - no direct commits; should
  7. only accept merges from `develop` when ready to release
  8. - `develop`: integration branch with unreleased but mostly functional code -
  9. direct commits allowed but should be minor
  10. - `feature/*`: individual components of the project with untested, likely
  11. horribly broken code - branch off from and merge into `develop` when done
  12. Documentation
  13. -------------
  14. To build documentation, run `make html` from the `docs` subdirectory. You can
  15. then browse from `docs/build/html/index.html`.
  16. To automatically update the API documentation structure (necessary when adding
  17. new modules or packages, but *not* when adding functions or changing
  18. docstrings), run `sphinx-apidoc -fo docs/source/api bitshift` from the project
  19. root. Note that this will revert any custom changes made to the files in
  20. `docs/source/api`, so you might want to update them by hand instead.