Skip to content

Commit de3a311

Browse files
authored
Update git_workflows_misc.md
1 parent 7d98b29 commit de3a311

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

git_workflows_misc.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
1-
# GIT
1+
## Git Workflows and Other
22
__Author: alpha74__
33

4+
----------
45

5-
## GIT WORKFLOWS:
6+
## Git Workflows Types:
67

7-
#### Centralized Workflow:
8+
#### 1. Centralized Workflow:
89
- Uses a single branch.
910
- Team members have local copies of project.
1011

1112
- *Cons*:
1213
- Features related to branching and PRs are not used.
1314

14-
#### Feature Branch Workflow:
15+
#### 2. Feature Branch Workflow:
1516
- Work is done on feature/topic branches.
1617
- feature branch is merged in base branch.
1718
- Uses a single remote repo.
1819

1920
- *Pros*:
2021
- Uses branching and PRs.
2122
22-
#### Forking Workflow:
23+
#### 3. Forking Workflow:
2324
- Involves multiple remote repos.
2425
- One of the remote repo is considered `upstream` from all, and is considered __source of truth__ .
2526
- Work is transfered from `remote` repo to `upstream` repo using PR.
@@ -32,7 +33,7 @@ __Author: alpha74__
3233
- Forked repo can become un-sync with `upstream`.
3334

3435

35-
#### Gitflow Workflow:
36+
#### 4. Gitflow Workflow:
3637
- Allows safe continues releases of project.
3738
- Involves two or more long running branches like: `release`, `master`, `develop`.
3839
- And short duration branches like: `featureX`, `topicA`, `hotfix-1`.
@@ -43,7 +44,7 @@ __Author: alpha74__
4344
- `develop` branch then adds a merge commit from `release` branch, if committed to `master`.
4445

4546

46-
### LIST OF PLUMBING COMMANDS IN GIT:
47+
### Plumbing commands in Git:
4748
- `cat file`
4849
- `check-ignore`
4950
- `commit-tree`
@@ -63,7 +64,7 @@ __Author: alpha74__
6364
- `verify-pack`
6465
- `write-tree`
6566

66-
### LEFT:
67+
### Others:
6768
- `git diff` : See the difference of changes made to the directory(shows only when commits are not made after changes).
6869
- `git diff <filename>` : Same for specific file.
6970
- `git diff -staged` : See all difference of changes made to the directory, after staging is done.2

0 commit comments

Comments
 (0)