Skip to main content

Feature branch workflow

12th October, 2022

Updated: 13th October, 2022

    git checkout -b feature-branch master
    
    git status
    git add <some-file>
    git commit
    
    git push -u origin feature-branch
    git push
    
    git checkout master
    git pull
    git pull origin feature-branch
    git push

    84c1a401-46f1-495c-b683-2956658e7ee0

    Created on: 12th October, 2022

    Last updated: 13th October, 2022

    Tagged With: