Icon indicating open access to content
QR code linking to this content
Protocol CitationNaeem.Muhammad 2022. Git workflow. protocols.io https://dx.doi.org/10.17504/protocols.io.dm6gpje81gzp/v1
License: This is an open access  protocol  distributed under the terms of the  Creative Commons Attribution License,  which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited
Protocol status: In development
We are still developing and optimizing this protocol
Created: August 25, 2022
Last Modified: August 25, 2022
Protocol  Integer ID: 69161
Keywords: git workflow git workflow for research group numa, git workflow git workflow, research group numa, workflow
Abstract
Git workflow for research group Numa
Numa_Git_Workflow
Create feature branch
Command
create git branch (linux)
git checkout -b myFeature dev

Make required changes
Commit changes
Command
commit changes
git commit -am "Your message"

Push feature branch to remote
Command
push changes
git push origin myFeature

Create a merge request