Answers for "how to add a project to github repository"

5

Adding an existing project to GitHub

// How to add your local code to a git repository?

  // 1 - Create a repository on GitHub
  // 2 - Open a command line on the root folder of your project
  // 3 - Init a local repository 
      git init
  // 4 - Stage all the files 
      git add .
  // 5 - Commit 
      git commit -m "First commit"
  // 6 - Associate the Git repository 
      git remote add origin [YOUR_REPO_HTTPS_LINK]
  // 7 - Check remote connection 
      git remote -v
  // 8 - Push all to the remote repository 
      git push origin master
Posted by: Guest on June-29-2021
4

how to upload existing project to github

git remote add origin remote repository URL
git remote -v
git push -f origin master
Posted by: Guest on June-16-2020

Code answers related to "how to add a project to github repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language