Git commit and insert Netbeans into one command

Is there a way to automatically make changes to git to a remote repository every time I commit local in Netbeans, like git add, commit and push commands in one? ?

+5
source share
1 answer

error 211451 is tracking this function request, which is not yet available in NBetBeans:

  • eGit provides a separate Commit and Push button.
  • IDEA provides a button labeled "Commit" that acts like a drop-down list. When the drop-down list opens, the actions "Commit and push", "Export as patch" are available.

Since NetBeansGit uses JGit , the hook will not work after committing ( not yet supported ).

+3
source

Source: https://habr.com/ru/post/1208509/


All Articles