git add git add --update # add all modified files that were already tracked (it will not add new files) git add . # add all modified and new files from this folder git add -A # add all modified and new files (from the root of the project) Lees meer »
Categorie: Git
Install IntelliJ with git and debug/hotdeploy to wildly
Install IntelliJ
Install the Community Edition of intelliJ.
Git in Intellij
In intelliJ: VCS – Enable Version Control Integration | choose git
Enable Debugging:
Start wildfly with the option –debug (run “standalone.bat –debug 8787”)
Lees meer »
cache git username/passwords
To cache the git username and password on windows, use the following command:
git config --global credential.helper wincred
To cache the git username and password on linux, use the following command:
git config --global credential.helper store