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 | |
# [Type - name] - Message - {tickets} | |
# e.g. "[Feature - Product Filter] - Implements product filtering. - {GMO-1920,GMO-2020}" | |
# -f for feature | |
# -i for issue | |
# -r for refactor | |
# -c for Crash Fix | |
# -n for type name |
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
alias gs="git status -s" | |
alias gd="git diff -w" | |
alias gca="git commit -a -m" | |
alias gl="git log --oneline --decorate" | |
alias gp="git push" | |
alias gf="git fetch" | |
alias gc="git checkout" |
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
import com.google.gson.JsonElement; | |
import com.google.gson.JsonObject; | |
import com.google.gson.JsonSerializationContext; | |
import com.google.gson.JsonSerializer; | |
import com.squareup.javapoet.*; | |
import javax.lang.model.element.Modifier; | |
import java.io.File; | |
import java.io.IOException; | |
import java.lang.reflect.Field; |