-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
477 additions
and
4,141 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
* text=auto eol=lf | ||
|
||
*.sh text eol=lf | ||
gradlew text eol=lf | ||
*.bat text eol=crlf | ||
|
||
*.jar binary |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# To initialize your development environment, | ||
# run below command in your terminal: | ||
# source ./initDev | ||
|
||
export PROJECT_DIR=$(pwd) | ||
|
||
alias api="cd $PROJECT_DIR/*-API" | ||
alias srv="cd $PROJECT_DIR/*-Server" | ||
|
||
alias ap="./gradlew --no-rebuild applyPatches" | ||
alias aap="./gradlew --no-rebuild applyAPIPatches" | ||
alias agp="./gradlew --no-rebuild applyGeneratedAPIPatches" | ||
alias asp="./gradlew --no-rebuild applyServerPatches" | ||
|
||
alias rp="./gradlew --no-rebuild rebuildPatches" | ||
alias rap="./gradlew --no-rebuild rebuildAPIPatches" | ||
alias rgp="./gradlew --no-rebuild rebuildGeneratedAPIPatches" | ||
alias rsp="./gradlew --no-rebuild rebuildServerPatches" | ||
|
||
alias lg="git log --oneline base..HEAD" | ||
alias rc="git rebase --autosquash -i base" | ||
alias rcc="git rebase --continue" | ||
|
||
# generate Fixup patches for Server | ||
function fs() { | ||
cd *-Server | ||
|
||
git add . | ||
git commit -m "fixup" | ||
git format-patch -1 | ||
mv 0001-fixup.patch ../ | ||
|
||
cd ../ | ||
} | ||
|
||
# generate Fixup patches for API | ||
function fa() { | ||
cd *-API | ||
|
||
git add . | ||
git commit -m "fixup" | ||
git format-patch -1 | ||
mv 0001-fixup.patch ../ | ||
|
||
cd ../ | ||
} | ||
|
||
# ReApply Server Patches | ||
function rasp() { | ||
rm -rf *-Server | ||
./gradlew applyServerPatches | ||
} |
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
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
Oops, something went wrong.