
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
create-remote-repo
Advanced tools
This command line tool automates the process of initializing a local Git repository, creating a remote GitHub repository via the GitHub API, optionally adding a .gitignore file, staging changes, committing, and performing the initial push to the remote repository.
This command line tool automates the process of initializing a local Git repository, creating a remote GitHub repository via the GitHub API, optionally adding a .gitignore file, staging changes, committing, and performing the initial push to the remote repository.
.gitignore file.python create-remote-repo -rn <repo-name> -gu <github-username> -t <github-token> -d <working-directory> [-i <include-gitignore>] [-p <private>]
python create-remote-repo -rn my-new-repo -gu myusername -t mytoken -d /path/to/working/directory -i y -p y
This command will:
| Argument | Description | Required | Default Value |
|---|---|---|---|
-rn, --repo-name | The name of the remote repository you want to create. | Yes | None |
-gu, --github-username | The username of your GitHub account. | No | global_github_username |
-t, --github-token | Your GitHub authorization token. | No | global_github_token |
-d, --working-directory | The absolute path to the local working directory where the repository should be initialized. | Yes | None |
-i, --include-gitignore | Enter y if you want to add a .gitignore file to your repository, otherwise enter n. | No | n |
-p, --private | Enter y if you want to make the remote repository private, otherwise enter n. | No | n |
This project is licensed under the MIT License. See the LICENSE file for details.
Created and maintained by Kim Chung.
FAQs
This command line tool automates the process of initializing a local Git repository, creating a remote GitHub repository via the GitHub API, optionally adding a .gitignore file, staging changes, committing, and performing the initial push to the remote repository.
We found that create-remote-repo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.