This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
############################################################################### | |
# | |
# Simple helper script to help merging branches & pull requests | |
# | |
############################################################################### | |
#internal use | |
script_file_name="MergeHelper.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## Dialogue helper to create a "topic-branch" for cmangos | |
# Steps in interactive dialog: | |
# 1) Get name of contribution (ie LFG) | |
# 2) Get type of contribution (feature, fix, rewrite, cleanup) | |
# 3) Get short description of contribution | |
# 4) Get place where the topic should be published (own repo --> address) | |
# 5) Check current state of worktree: dirty/clean; | |
# if dirty ask if changes should be taken into new topic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#################################################################################################### | |
# | |
# Simple helper script to insert clean UDB | |
# | |
#################################################################################################### | |
#internal use | |
SCRIPT_FILE="InstallFullUDB.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2012 CMaNGOS project | |
# | |
#!/bin/sh | |
# | |
# This script will help to create directories and download the required content for CMaNGOS installation | |
# It is designed to be used with beginners and help automate installation | |
# | |
# Some variables that will be asked by the script | |
CLIENT="wotlk" | |
CORE_REPO="" |