Git #8 - Manage private remote repo on GitHub with SSH and access token

Опубликовано: 16 Март 2026
на канале: itvraag
2,310
35

In this video we'll go through how to manage a remote repository on GitHub and sync it with our local repo with SSH and Access Token.
#git #github #repository
https://itvraag.nl
Git basics:    • Git #1 - install, config and command basic...  

Commands:
Used commands:

git remote
git remote -v
git remote add NAME URL

git push
git push REMOTE BRANCH
git push -u origin main
git push --all

git pull
git config pull.rebase false
git branch --set-upstream-to=origin/[branch] main

git config --global credential.helper cache
git config --global --unset credential.helper