Answers for "create repository, commit, and push"

0

create repository, commit, and push

git init
git add .
git commit -m "commit_id (any name)"
git remote add origin your_repository_link.git
git push -u origin branch_name(master quite often)
Posted by: Guest on October-17-2021

Code answers related to "create repository, commit, and push"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language