Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/ Contribution/Scout Git Scripts"

(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''For RT:'''
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
*Allow non-FF on any branch: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.rt.git' config --add hooks.allownonffpush true</pre>
+
*Allow any branch to be deleted: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.rt.git' config --add hooks.allowdeletebranch true</pre>
+
*Allow any branch to be created: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.rt.git' config --add hooks.allowcreatenottopicbranch true</pre>
+
*Allow any tag to be deleted: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.rt.git' config --add hooks.allowdeletetag true</pre>
+
*Remove all hook configs: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.rt.git' config --remove-section hooks</pre>
+
 
+
'''For SDK:'''
+
 
+
*Allow non-FF on any branch: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --add hooks.allownonffpush true</pre>
+
*Allow any branch to be deleted: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --add hooks.allowdeletebranch true</pre>
+
*Allow any branch to be created: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --add hooks.allowcreatenottopicbranch true</pre>
+
*Allow any tag to be deleted: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --add hooks.allowdeletetag true</pre>
+
*Remove all hook configs: <pre>git --git-dir='/gitroot/scout/org.eclipse.scout.sdk.git' config --remove-section hooks</pre>
+

Latest revision as of 06:24, 19 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top