Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trianglesis/git_ed_public
Public and open example for git education
https://github.com/trianglesis/git_ed_public
Last synced: about 2 months ago
JSON representation
Public and open example for git education
- Host: GitHub
- URL: https://github.com/trianglesis/git_ed_public
- Owner: trianglesis
- Created: 2024-02-13T10:52:30.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-19T11:18:45.000Z (10 months ago)
- Last Synced: 2024-02-19T12:51:46.308Z (10 months ago)
- Size: 2.24 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to use
# Usual workflow FORKING
Here is a simplified workflow using the fork approach:
1. Make a fork from the original repository.
1. [How to make a fork](DOCUMENTATION/forking/fork_original_repo.md)
2. Close your fork's main branch from commits.
1. [Close the main branch](DOCUMENTATION/branching/branch_rules.md)
3. Create a new branch at your fork to work on a new fix.
1. [Create a new branch](DOCUMENTATION/branching/branching.md)
4. Commit your local changes to a newly created branch.
5. Push local changes to your remote branch.
1. [Push code doc](DOCUMENTATION/commit_push/push_code_forked.md)
6. Create a Pull Request from that branch back into the original repository main branch.
1. [Pull request doc](DOCUMENTATION/pull_request/pull_request_and_review.md)
7. Assign reviewer and wait for comments or approve
1. Continue your work on another fix, creating a new branch from your fork's main branch.
2. [Create a new branch](DOCUMENTATION/branching/branching.md)
8. Merge your changes after approval in the Pull Request
1. [Pull request doc](DOCUMENTATION/pull_request/pull_request_and_review.md)