Created
July 8, 2022 04:21
-
-
Save pedroAkiraDanno/fd44a8de121b4d8698559b943a077095 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| git flow init | |
| touch index.html | |
| git add . | |
| git commit -m "add index.html" | |
| git flow feature start css | |
| **dont live brench without commit | |
| touch style.css | |
| git add . | |
| git commit -m "add style.css " | |
| #git flow feature publish css | |
| git flow feature finish css | |
| git checkout develop | |
| git flow release start 1.0 | |
| git flow release finish 1.0 | |
| Project finish - comment to tags | |
| git checkout main | |
| git flow hotfix start 1.1 | |
| touch test.js | |
| git add . | |
| git commit -m "alter file add style.css " | |
| git flow hotfix finish 1.1 | |
| will create the new tag | |
| git checkout develop | |
| git push --all | |
| git flow feature start js | |
| touch script.js | |
| git add . | |
| git commit -m "add script.js " | |
| git flow feature publish js | |
| git flow feature finish js | |
| git push --all | |
| https://www.youtube.com/watch?v=394mc6PV8t8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment