Let's take a look at the Git tools MyEclipse comes with.
I was registered in the Code cloud account, above the warehouse of the project, the project to clone the warehouse to the local, in the MyEclipse import the project.
So how do you commit the modified code to the code cloud?
The first step: mark the changed code
Project Right-click: team-"Synchronize workspace
Click OK
Project Right-click Add to Git index
Step Two: Submit the code of the workspace to the local repository commit
Need to write a comment
Step Three: Merge the remote repository's code into the local warehouse pull
This step may require resolving code conflicts, merging code
Fourth step: Push the local warehouse code to the remote warehouse push
Project Right-click: Team push to upstream
The result: You can see the code you pushed up on the code cloud.
Hint: simply introduce the use of Git in MyEclipse, is also the most commonly used several steps, if have understanding deviation also please hesitate to correct.
MyEclipse How to use your own Git tool to submit code to a remote repository