Creating a git repo in Local machine

PHOTO EMBED

Mon Sep 16 2024 14:28:39 GMT+0000 (Coordinated Universal Time)

Saved by @Code2Buzz

echo "# PyTorch" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Code2Buzz/PyTorch.git
git push -u origin main
content_copyCOPY

https://github.com/Code2Buzz/PyTorch