1
- # GIT
1
+ ## Git Workflows and Other
2
2
__ Author: alpha74__
3
3
4
+ ----------
4
5
5
- ## GIT WORKFLOWS :
6
+ ## Git Workflows Types :
6
7
7
- #### Centralized Workflow:
8
+ #### 1. Centralized Workflow:
8
9
- Uses a single branch.
9
10
- Team members have local copies of project.
10
11
11
12
- * Cons* :
12
13
- Features related to branching and PRs are not used.
13
14
14
- #### Feature Branch Workflow:
15
+ #### 2. Feature Branch Workflow:
15
16
- Work is done on feature/topic branches.
16
17
- feature branch is merged in base branch.
17
18
- Uses a single remote repo.
18
19
19
20
- * Pros* :
20
21
- Uses branching and PRs.
21
22
22
- #### Forking Workflow:
23
+ #### 3. Forking Workflow:
23
24
- Involves multiple remote repos.
24
25
- One of the remote repo is considered ` upstream ` from all, and is considered __ source of truth__ .
25
26
- Work is transfered from ` remote ` repo to ` upstream ` repo using PR.
@@ -32,7 +33,7 @@ __Author: alpha74__
32
33
- Forked repo can become un-sync with `upstream`.
33
34
34
35
35
- #### Gitflow Workflow:
36
+ #### 4. Gitflow Workflow:
36
37
- Allows safe continues releases of project.
37
38
- Involves two or more long running branches like: ` release ` , ` master ` , ` develop ` .
38
39
- And short duration branches like: ` featureX ` , ` topicA ` , ` hotfix-1 ` .
@@ -43,7 +44,7 @@ __Author: alpha74__
43
44
- `develop` branch then adds a merge commit from `release` branch, if committed to `master`.
44
45
45
46
46
- ### LIST OF PLUMBING COMMANDS IN GIT :
47
+ ### Plumbing commands in Git :
47
48
- ` cat file `
48
49
- ` check-ignore `
49
50
- ` commit-tree `
@@ -63,7 +64,7 @@ __Author: alpha74__
63
64
- ` verify-pack `
64
65
- ` write-tree `
65
66
66
- ### LEFT :
67
+ ### Others :
67
68
- ` git diff ` : See the difference of changes made to the directory(shows only when commits are not made after changes).
68
69
- ` git diff <filename> ` : Same for specific file.
69
70
- ` git diff -staged ` : See all difference of changes made to the directory, after staging is done.2
0 commit comments