How to create a repository using git and GitHub for beginners.
A repository is a storage location for software packages. For one to create it, you must have git installed on your computer and a Github account.
Open your git bash, Create your local project in your desktop directed towards a current working directory, Initialize the git repository. Add the file to the new local repository, Commit the files staged in your local repository by writing a commit message by git commit -m ‘your message’.
Copy your remote repository URL from your GitHub, add the copied URL to your local content, push the code in your local repository to GitHub using command git push -u origin master.
lastly view your files in your repository hosted on GitHub.
Thanks for reading