Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Scout/ Contribution/Scout Git Scripts

< Scout
Revision as of 07:27, 22 February 2013 by Unnamed Poltroon (Talk) (New page: '''For SDK:''' *Allow non-FF on any branch: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --hooks.allownonffpush true</pre> *Allow any branch to be deleted: <pre>...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

For SDK:

  • Allow non-FF on any branch:
    git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --hooks.allownonffpush true
  • Allow any branch to be deleted:
    git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --hooks.allowdeletebranch true
  • Allow any branch to be created:
    git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --hooks.allowcreatenottopicbranch true
  • Allow any tag to be deleted:
    git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --hooks.allowdeletetag true
  • Remove all hook configs:
    git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --remove-section hooks

Back to the top