This project is only used for learning how to work with git
X To use the NEST CLI you must install this:
npm install -g @nestjs/cli
- commit this to main branch
- rebase this so who makes
dev
can see the changes - create a feat branch from
dev
with namefeat/cat
- create a feat branch from
dev
with namefeat/chicken
- add a new crud for cats so they can say meow and for chicken to say bawk
- before commit both modify the main.ts to have a function that returns -1;
- both add a file in root called .someconfig and add some random text to this
- meanwhile modify branch
main
s to listen on port 3001
nest g resource <resourec_name>
-
Solve the following problem:
- you must update
feat/cat
withmain
first
- you must update
-
commit the newly created feature to the
feat/cat
andfeat/chicken
-
rebase or merge it back to
dev
with PR? -
rebase or merge the
dev
back tomain
- revert
dev
ormain
becausefeat/cat
broke the productions 😂