Last active
October 21, 2019 01:15
-
-
Save DonerKebab/2228ad163c77e24034b7a1d6255509ac to your computer and use it in GitHub Desktop.
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
# start working on a new issue | |
$ git checkout develop | |
$ git pull origin | |
$ git checkout -b {feature}/{ticket-id}-{name} | |
# finish working on an issue | |
$ git status | |
$ git diff {path-file-1} | |
$ git add {path-file-1} | |
$ git commit -m “[TICKET-ID] short desc here” | |
$ git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment