Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 582 Bytes

git-forking-workflow.md

File metadata and controls

11 lines (9 loc) · 582 Bytes

Git Forking Workflow

  1. Start by forking the main repository to create your own remote repository
  2. Clone down your remote repository: git clone SSH_CLONE_URL
  3. Develop locally
  4. Once done, add files to staging: git add -A (taking a snapshot)
  5. Add files (snapshot) to local repo: git commit -am "commit message"
  6. Now push your local repository to the remote rep on Github: git push origin master
  7. Finally, create a Pull Request against the main repository

git fork workflow