Git CLI Delete History Commit
Checkoutgit checkout --orphan latest_branchAdd all the files git add -ACommit the changes git commit -am "commit message"Delete the branch git branch -D masterRename the current branch to master git branch -m masterFinally, force update your repositorygit push -f origin master
Project lists for beginner
Movies App (Flutter Project)
Cara mengetahui produk android melalui fastboot
reboot ke fastboot mode
ketik
fastboot devices
fastboot getvar product
Android Studio Set Weight Layout Programatically
LinearLayout.LayoutParams param = new LinearLayout.LayoutParams( LayoutParams.MATCH_PARENT, //OR WRAP_CONTENT -> layout_width LayoutParams.MATCH_PARENT, //OR WRAP_CONTENT -> layout_height 1.0f // layout_weight 1);YOUR_VIEW.setLayoutParams(param);
Build Gradle Component Definitions
Common Gradle Command Prompt Command Description ./gradlew build build project, runs both the assemble and check task ./gradlew clean build ...
Git CLI Delete History Commit
Checkoutgit checkout --orphan latest_branchAdd all the files git add -ACommit the changes git commit -am "commit message"Delete the branch git branch -D masterRename the current branch to master git branch -m masterFinally, force update your repositorygit push -f origin master
Project lists for beginner
Movies App (Flutter Project)
Cara mengetahui produk android melalui fastboot
reboot ke fastboot mode
ketik
fastboot devices
fastboot getvar product
Fix add file to gitignore not filtered
git rm -r --cached .git add .git commit -m 'clear git cache'git push
Fix add file to gitignore not filtered
git rm -r --cached .git add .git commit -m 'clear git cache'git push