Answers for "git init windows"

0

git init

echo "# Nelson_Mandela_Tribute_page" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/{github username}/{git title}.git
git push -u origin main
Posted by: Guest on February-28-2022
8

git init

cd /path/to/my/codebase
git init   
git add .    
git commit -m "my comment"
Posted by: Guest on March-22-2020
0

git init command

echo "# repo-name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin <repo url>
git push -u origin main
Posted by: Guest on April-14-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language