Skip to content

Instantly share code, notes, and snippets.

View joaodematejr's full-sized avatar
🏠
Working from home

João Dematé Jr joaodematejr

🏠
Working from home
View GitHub Profile
@joaodematejr
joaodematejr / gitflow-breakdown.md
Created May 10, 2023 13:41 — forked from JamesMGreene/gitflow-breakdown.md
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository

@joaodematejr
joaodematejr / flask skeleton folder tree
Created August 10, 2022 22:09 — forked from efazati/Py Flask Skeleton
flask folders and files structure
.
├── deploy.py
├── project
│   ├── application.py
│   ├── apps
│   │   ├── articles
│   │   │   ├── forms.py
│   │   │   ├── __init__.py
│   │   │   ├── models.py
│   │   │   └── views.py