I'm learning to use Git and GitHub. I tried to do my first remote repository in my windows version of Git git version 2.32.0.windows.1. I followed the next instructions:
mkdir git_practiceto make a new directory to practice.- cd
git_practiceto make the new directory your working directory. git initto turn the current, empty directory into a fresh Git repository.echo "Hello Git and GitHub" >> README.txtto create a new README file (more on this later) with some sample text.git add README.txtto add the new file to the Git staging area.git commit -m "First commit"to make your first commit with the new README file.
Once I've done that. I follow the instructions on my GitHub repository to push an existing repository from the command line.
git remote add origin https://github.com/Glamerstone/Practice.gitgit branch -M maingit push -u origin main
But once I call the last command it keeps like loading and don't do anything.
I really hope someone can help me.