Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 969 Bytes

gitHub-Notes.rst

File metadata and controls

30 lines (20 loc) · 969 Bytes

General workflow:

Seems there are a couple of main Git workflows:

  1. All be collaborators on one project, but maintain multiple streams of development using Branches.

  2. Have a "main" repo (and call it 'upstream' locally) for overall project , and also a local repo you commit to (call it 'origin')

    Commit your changes to branches on your 'origin' repo, then when you have functionality wish to merge into the main repo, use a "pull request" to ask maintainer to pull, review, then merge in.

Setting up ssh access:

git remote set-url origin [email protected]:PatSunter/DevSkillsNotes.git

Refs: