Skip to content

Instantly share code, notes, and snippets.

View KaushalDhakal0's full-sized avatar

Kaushal Dhakal KaushalDhakal0

  • Kathmandu, Nepal
View GitHub Profile
@KaushalDhakal0
KaushalDhakal0 / git-collaborative-workflow.md
Created March 30, 2022 10:03 — forked from adamloving/git-collaborative-workflow.md
Simple Git workflow for collaborating on a project. I wrote this to help a co-worker learn Git (and help me remember after a year of working on my own).

Creating the change

$ git checkout -b my-feature

... modify code ....

$ git add <filename> 
$ git commit -m “my feature is this”