Adding an existing project to GitHub using the command line

Sumeet Panchal
1 min readAug 1, 2020

--

  1. Create a new repository on GitHub. You can also add a gitignore file, a readme, and a license if you want
  2. Open Git Bash
  3. Change the current working directory to your local project.
  4. Initialize the local directory as a Git repository.
    git init
  5. Add the files to your new local repository. This stages them for the first commit.
    git add .
  6. Commit the files that you’ve staged in your local repository.
    git commit -m "initial commit"
  7. Copy the https URL of your newly created repo
  8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.
  9. git remote add origin remote repository URL
  10. git remote -v
  11. Push the changes in your local repository to GitHub.
  12. git push -f origin master

That’s all

--

--

Sumeet Panchal
Sumeet Panchal

Written by Sumeet Panchal

Programming enthusiast specializing in Android and React Native, passionate about crafting intuitive mobile experiences and exploring innovative solutions.

No responses yet