I hereby claim:
- I am aravinth-earth on github.
- I am simple_dynamite (https://keybase.io/simple_dynamite) on keybase.
- I have a public key ASB_Og6PNUTmYc5FzZHaEX46aH_STFrh471s7gJYY34w-Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
scoop cleanup * -k
-> cleanup old versions (to free up space)scoop cache rm *
-> clean the cache downloadsscoop config gh_token
-> to set a new github pat tokenadb devices
, when launching the terminal from the extract's sub folder <parent-folder>/Android/Sdk/platform-tools
adb shell pm list packages
adb shell pm uninstall -k --user 0
## Create | |
git pull --> Get the latest code from the remote | |
git push --> Only when the local brach also exists in remote, push the local code changes | |
git push --set-upstream origin <#BranchName#> --> Set the remote tracking branch as per the name provided & push the local code changes | |
## Modify | |
git merge <#BranchName#> --> Merge the branch name mentioned to the current branch | |
git checkout -b <#BranchName#> --> Checkout to the branch name mentioned | |
git add . --> Stage all the changes to the | |
git commit -m <#Message#> --> Commit the staged changes with the message mentioned |