Langsung ke konten utama

Postingan

Menampilkan postingan dari Maret, 2022

Git Stash

Descriprtion Git Stash command fungsinya untuk menyimpan code ke dalam sebuah stash . tujuannya ketika kita ingin pindah branch secara cepat tanpa perlu commit sebelum pindah branch( karna takut salah commit, lebih baik dimasukan ke stash ). Memasukan code ke stash $ git status On branch main Changes to be committed: new file: style.css Changes not staged for commit: modified: index.html $ git stash Saved working directory and index state WIP on main: 5002d47 our new homepage HEAD is now at 5002d47 our new homepage $ git status On branch main nothing to commit, working tree clean Mengeluarkan code dari stash $ git stash apply On branch main Changes to be committed: new file: style.css Changes not staged for commit: modified: index.html Fungsi perintah git stash list untuk melihat daftar perubahan stash git stash untuk memasukan code ke stash git apply untuk mengeluarkan code dari stash source:  https://www.atlassian.com/git/tutori...

Spring Boot Rest API Documentations Annotations

  Annotation for DTO Request For change name of propertie @JsonProperty("name") <data type> <name variable>  Make description of properties @ApiModelProperty(name = "Delivery Order Line Id", example = "08a462d6-7cc9-4216-a21c-6f1ac8000009") Make the propertie should prositive(not be zebo) @Positive(message = "QTY must be positive value") Annotation for DTO Response Change name of propertie @JsonAlias("name") <data type> <name variable>