Skip to content

Instantly share code, notes, and snippets.

View sebaxtian's full-sized avatar
:octocat:
Software Engineer

Sebastian Rios Sabogal sebaxtian

:octocat:
Software Engineer
View GitHub Profile
@sebaxtian
sebaxtian / basic-git-commands.md
Last active April 10, 2020 14:09
Basic Git Commands

Create Develop Branch on Git

prompt$ git branch develop
prompt$ git push -u origin develop
prompt$ git checkout develop

Create New Feature Branch on Git

prompt$ git checkout -b some-feature develop