Git & GitHub in 11minutes | Git And GitHub learning from Scratch | Git And GitHub tutorial

Опубликовано: 18 Март 2025
на канале: aq fast learn
35
0

Learn Git and GitHub very quickly
💻As a programmer, you need a Version Control System, the most popular of which is Git
💻You also need to keep your code in a secure environment and you may also need to share your projects with everyone or your friends, for which the most popular tool is GitHub.

🔗Download Git:
https://git-scm.com/downloads

🔗Download project:
https://github.com/qasemB/Git-and-Git...

📗Git command list:
git config --global user.name "Your Name"
git config --global user.email "Your Email"
git init
git add .
git status
git commit -m "message..."
git commit -am "message..."
git log
git log --oneline

git remote add Remote-name http://github.com/...Repository-path
git push -u Remote-name Branch-name
git clone http://github.com/...Repository-path
git push
git pull

00:00 Introduction
00:20 Git
05:25 GitHub