GitHub Repository - ma9y/ma9y.github.io GitHub Wiki

Initialize your repository

git init

Add files to be committed

git add --all

Commit

git commit -m "Initial commit"

Create a new repository on GitHub

After creating the new repository, run the commands from the section “…or push an existing repository from the command line.” They should look like this:

git remote add origin https://github.com/<username>/<repoName>.git
git branch -M main
git push -u origin main

Sources

⚠️ **GitHub.com Fallback** ⚠️