https://github.com/codeadamca/github-existing
How to convert existing code to a GitHub repo.
https://github.com/codeadamca/github-existing
git github
Last synced: 3 months ago
JSON representation
How to convert existing code to a GitHub repo.
- Host: GitHub
- URL: https://github.com/codeadamca/github-existing
- Owner: codeadamca
- Created: 2023-02-08T15:38:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T22:21:23.000Z (5 months ago)
- Last Synced: 2025-01-26T23:20:47.231Z (5 months ago)
- Topics: git, github
- Language: HTML
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adding an Existing Codeset
If you have an exisitng codeset and want to add it to a new GitHub repo, follow these steps:
Log in to your [GitHub](https://github.com/) account and create a new repo.
Open your terminal, change the present working directory to your project directory, and then run these commands:
```
git init
git add .
git commit -m "Initial Commit"
git branch -M main
git remote add origin https://github.com//.git
git push -u origin main
```***
## Repo Resources
* [GitHub](https://github.com/)