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
. If you are new to git and github and looking for good educational videos on it then this
might interest you.
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
⭐ 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>