Push an existing repo in github

cd existing_folder
git init
git remote add origin https://github.com/KanhaHelp/abc.git
git branch -M master
git add .
git commit -m "my 2nd commit"
git push -u origin master

Post a Comment

0 Comments