- Authenticatioin enabled
- Noice lazyport portfolio for lazy developer
<title>Spring</title>
wanna learn more about codespaces setup for spring boot
cheacout spring-boot-codespaces-setup
NOTES
-
Use codespaces for coding, its configured for
java-17
. -
we are uding
dev
branch as default development branch.master
branch will be used for prodection branch.
- if you are not using
codespaces
and wanna go traditional way, then Fork repository and execute some comamnd.
Make sure to include all branch during Fork
git clone <your-local-forked-repo-link>
git checkout dev
Command to confirm current branch
git branch
- Then go ahead and make required changes to the code. After that do
git add .
&git commit -m "msg"
.
Do push your changes to the forked repo
dev
branch only.
git push origin dev
You can check your origin alias by executing.
git remote -v
- checkout conventional commit for meaningful commit msg.