Answers for "how to add code in git repository with comnad line"

4

git existing code to new repository

cd myapp
git init
git remote add origin https://github.com/myname/myapp.git
git add .
git commit -m "Initial commit"
git push -u origin master
Posted by: Guest on May-18-2021
0

how to add code to git

Git add .

Git status
Posted by: Guest on January-08-2022

Code answers related to "how to add code in git repository with comnad line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language