Creating a GitHub repository and uploading files for first time
๐ป๐ช Spanish
1.- Create a new folder for a new project.
mkdir ruby
cd ruby
2.- Create a local repository with git init command.
git init
3.- Rename the master branch to main.
git config --global init.defaultBranch main
Or open HEAD file and chang...
crisprogramming.hashnode.dev2 min read