Friday 23 July 2021

Adding an existing project to GitHub using the command line

 

  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. run below command
  4. git config --global user.email "useremail@gmail.com"
  5. git config --global user.name "username"
  6. Change the current working directory to your local project.
  7. Initialize the local directory as a Git repository.
    git init
  8. Add the files to your new local repository. This stages them for the first commit.
    git add .
  9.  Commit the files that you’ve staged in your local repository.
    git commit -m "initial commit"
  10.  Copy the HTTPS URL of your newly created repo
  11. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.

    git remote add origin remote repository URL


    git remote -v
  12.  Push the changes in your local repository to GitHub.

    git push -f origin master

Recent Post

Parallel Task in .Net 4.0