Answers for "git init exiting repo to new project"

37

git init repo

git init
git add somefile
git commit -m "initial commit"
git remote add origin https://github.com/username/new_repo
git push -u origin master
Posted by: Guest on May-17-2020
0

start new git repo from project

git init
git add .
git commit -m "First commit"
Posted by: Guest on October-28-2021

Code answers related to "git init exiting repo to new project"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language