This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I am working on new feature | |
$ git checkout -b some-new-feature | |
#Changed files, commit and push to source | |
git add . && git commit -m 'some cool changes' && git push origin some-new-feature | |
#After comments within pull request I need to fix some code | |
#After fix it and commit I can see 2 commits within git history | |
$ git add . && git commit -m 'some fix to cool changes' && git push origin some-new-feature | |
$ git log |