xxxxxxxxxx
//it assumes theres at least one commit on the local repo
git init
git remote add origin git@github.com:username/new_repo
git push -u origin master
xxxxxxxxxx
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/<your username>/<repository>.git
git push -u origin main
xxxxxxxxxx
$ git init
$ git add .
# Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
$ git commit -m "First commit"
# Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
$ git remote add origin remote repository URL
# Sets the new remote
$ git remote -v
# Verifies the new remote URL
$ git push origin main
# Pushes the changes in your local repository up to the remote repository you specified as the origin
xxxxxxxxxx
# Navigate to root directory
# initialize
git init -b main
# stage and commit changes
git add . && git commit -m "initial commit"
# create new repository on GitHub using the GitHub CLI interface
gh repo create
# Follow prompts and instructions
xxxxxxxxxx
echo "# ANDERSON" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Anderson68-chale/ANDERSON.git
git push -u origin main
xxxxxxxxxx
git remote add origin https://github.com/Anderson68-chale/ANDERSON.git
git branch -M main
git push -u origin main
xxxxxxxxxx
echo "# wp-rest-api-example" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/OmarFSarkar/wp-rest-api-example.git
git push -u origin main
xxxxxxxxxx
# Install the 'PyGithub' library
pip install PyGithub
from github import Github
# Personal Access Token
TOKEN = '<your_personal_access_token>'
# Create a new repository
def create_new_repo(repo_name):
g = Github(TOKEN)
user = g.get_user()
repo = user.create_repo(repo_name)
print(f"New repository '{repo.name}' created successfully!")
# Enter the desired repository name
repo_name = input("Enter the repository name: ")
# Call the function to create a new repository
create_new_repo(repo_name)