Skip to content

Instantly share code, notes, and snippets.

View liamgbs's full-sized avatar
🎯
Focusing

Liam liamgbs

🎯
Focusing
View GitHub Profile
@adamloving
adamloving / git-collaborative-workflow.md
Last active January 27, 2024 02:36
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”