Answers for "put project on github"

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
0

how to push existing project to github

git remote add origin 
      https://github.com/asd/FinraDeck.git (github adresi)
• git push -u origin master
Posted by: Guest on January-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language