An open API service indexing awesome lists of open source software.

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.

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/)