-
Introduction to JS
- Syntax
- Variables and Data types
- Operators and Control Statements
- Functions
- Custom Functions
- Sync and Analysis
- Promises
- Callbacks
- OOP JS
-
Git -Typescript
-
nodeJS
-
API BUILD (Express) -Database
- Mongodb
- Postgres/mysql
- API ready (BE project)
- FE
- Html and CSS
- CSS Based Library (tailwind)
-
React
- CMS Application
-
Next JS
- Website
-
CMS, Website, API
-
Project Develop Submit
- Global Version controlling tool
- Collaboration
- Version Controlling
- Automation
- Deployment
- Project Status Tracking
- Developers
- DevOPS
- Stakeholders
- working machine/device
- share the code online( Provider)
- GitHub
- Gitlab
- Bitbucket
-
Project Initialize
git innit
-
To Add remove
git remote add origin <url>
-
To add changes -
git add . -
To commit the changes -
git commit -m "Message" -
To Push thr commit/branch -
git push origin <sourceBranch[>:<destinationBranch>] -
To pull the code from git -
git pull origin <sourceBranchofRepo> -
Global configuration of git
-
user
git config [--global] user.name " Name"-git config [--global] user.email " Email"
-
Pull operation
- 3( merge, rebase, fast-forward)
git config [--global] pull.rebase <true|false>
-
To create a new branch
git checkout -b <branchname>
-