Answers for "github add existing project to repo"

4

how to add an existing project to github

# Go into your existing directory and run below commands
cd docker-spring-boot
echo "# docker-spring-boot" >> README.md
git init
git add -A
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/devopsmaster/docker-spring-boot.git
git push -u origin master
Posted by: Guest on December-12-2020
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

Code answers related to "github add existing project to repo"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language