generated from cotes2020/chirpy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Git flow | ||
|
||
![Alt text](image.png) | ||
|
||
Iniciando o git flow | ||
|
||
|
||
|
||
``` | ||
git flow init | ||
``` | ||
|
||
Branch de produção [main] | ||
Branch de desenvolvimento [development] | ||
Branch de suporte [feature/] | ||
Branch de bug [bugfix/] | ||
Branch de testes [release/] | ||
Branch de [hotfix/] | ||
Branch de suporte [support/] | ||
Version tag prefix [] | ||
|
||
|
||
Summary of actions: | ||
// Cria uma nova branch baseada na develop trazendo tudo para feature/css | ||
- A new branch 'feature/css' was created, based on 'develop' | ||
- You are now on branch 'feature/css' | ||
|
||
Now, start committing on your feature. When done, use: | ||
|
||
git flow feature finish css | ||
|
||
git flow feature start css | ||
|
||
|
||
Finalizando a branch feature | ||
|
||
git flow feature finish css | ||
|
||
Criando a release 1.0 para ser testada |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Git Flow Example</title> | ||
</head> | ||
<body> | ||
<h1>Git Flow Example</h1> | ||
<p>This is a simple example of how to use git flow.</p> | ||
<p>The code in this file is just a placeholder. You can replace it with your own code.</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
body { | ||
font-family: sans-serif; | ||
font-size: 16px; | ||
line-height: 1.5; | ||
} | ||
|
||
h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
} | ||
|
||
p { | ||
margin-bottom: 10px; | ||
} |