- I pulled the last version from the online repository
git pull origin master
- Then made some changes in the code-base and added them
git add .
- Then created a new commit
git commit -m "bug x fixed"
- Then made some new changes in the code base and I want to merge them to the last commit (which isn't pushed to the online repository yet).
Should I add them again? Should I remove the last commit and make a new one? or what?