Using Github with VSCode Terminal using Git Commands

Опубликовано: 27 Март 2026
на канале: Code with ARIB
18
0

In this video i will tell you how to push the code in github

git status
git add "filename"
git commit -m "Your commit message"
git push origin main


git remote origin add https://github.com/ARIBFIB/import-ran...
git remote -v (to verify)
git branch (to check branch)
git branch -M main (to rename the branch)
git push origin main


-----
echo "Initial file" dummy.txt
git add dummy.txt
git commit -m "Initial commit"

git branch main

git checkout main

git push -u origin main