I have an existing empty repository with calculator name on GitHub and I want to add a folder to it in my PC. How can I add it. I need a step by step command guide.
I know I must use git clone and add and.. but don’t know the order and the exact command
>Solution :
git init
git clone NameOfTheRepository
you can add your folder by this command to a specific repository
git add NameOfAllFolders
git branch -M master
this is a branch that already exists in your repository and you can add your changes to it for starter.