Files
SCM-Manager/scm-ui
Rene Pfeuffer 8eb2687e10 Fix branch and tag name validation
The validation for branch and tag names has been
too limited. This led to errors in the frontend for
branches, that had been created using the
cli tools for git or hg but have not been seen as
valid by SCM-Manager.

To fix this, the patterns to validate branch and
tag names are relaxed and relate to the git
rules (https://git-scm.com/docs/git-check-ref-format).
Because these rules could not be expressed
using regular expressions alone, in addition
possible exceptions will be handled in the
git branch and tag commands.

Committed-by: Konstantin Schaper <konstantin.schaper@cloudogu.com>
Co-authored-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com>
Co-authored-by: René Pfeuffer <rene.pfeuffer@cloudogu.com>
Co-authored-by: Konstantin Schaper <konstantin.schaper@cloudogu.com>
2023-04-05 11:45:15 +02:00
..
2023-03-27 15:45:27 +02:00
2023-04-03 10:02:17 +02:00
2023-04-03 10:02:17 +02:00
2023-04-03 10:02:17 +02:00
2022-09-14 13:31:50 +02:00
2018-07-25 08:57:38 +02:00

scm-ui

VSCode Plugins

  • EditorConfig for VS Code
  • Flow Language Support
  • Prettier - Code formatter
  • Project Snippets
  • Debugger for Chrome
code --install-extension EditorConfig.EditorConfig
code --install-extension flowtype.flow-for-vscode
code --install-extension esbenp.prettier-vscode
code --install-extension rebornix.project-snippets

# debugging with chrome browser
code --install-extension msjsdiag.debugger-for-chrome

Install pre-commit hook

echo "" >> .hg/hgrc
echo "[hooks]" >> .hg/hgrc
echo "pre-commit = cd scm-ui && yarn run pre-commit" >> .hg/hgrc