You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then clone the repo from your github profile in your local machine(e.g. from VS CODE Terminal) by running this command git clone https://github.com/<your profile name>/manan-a-techno-surge.git
Go to folder of the code and in terminal type this to install dependencies modules npm
To start development server, type npm start
Switch to a new branch (with name related to feature you are working on), by running this command git switch -c <branch_name>
After finishing your code - add, commit and push it to your repo.
Add your changes to staging area git add .
Commit your changes git commit -m "<write message here>"
Push your feature branch to github repo git push -u origin <current branch name> (You can also publish your feature branch by clicking 🔁(Synchronise changes) button in the left bottom side of your vs code instead of writing this command)
After pushing, now you can make pull request from your repo to original repo of manan organization profile
Click on Pull Request tab in your repo on github then New Pull Request,
Select dev branch in base repo box and < your feature branch > in compare box
Explain about the changes you made in message box below and create a pull request.