Skip to content

Instantly share code, notes, and snippets.

@DonerKebab
Last active October 21, 2019 01:15
Show Gist options
  • Save DonerKebab/2228ad163c77e24034b7a1d6255509ac to your computer and use it in GitHub Desktop.
Save DonerKebab/2228ad163c77e24034b7a1d6255509ac to your computer and use it in GitHub Desktop.
# 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