Before following the below steps you have to make sure that git is installed on your local machine. If not then you can install git for your operating system from here
.
Copy your remote's url. Remote is git's fancy way of referencing to a place where your code is stored.
git clone [email protected]:<your_github_username>/starter.git # please clone according to your remote url
⭐ After cloning the repository open the respective folder in some text editor, preferably VS Code.
Then run the below commands.
git checkout -b <branch-name>
4. Follow this tutorial
to make some changes in the cloned repository.
git add .
git status
git commit -m <write commit message inside quotes>
git push -u origin <branch-name>