“GIT Local Setup” Ответ

настройка GIT


$ git config --global user.name "Your Name"
$ git config --global user.email "you@youraddress.com"
$ git config --global push.default matching
$ git config --global alias.co checkout
$ git init

Spotless Stoat

GIT Local Setup

git config --global user.name "Tanju Gümüs"
git config --global user.email "tanju.guemues@x-cell.com"
Thoughtless Tapir

настройка GIT

echo "# your repo name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin your-repo-link.git
git push -u origin main
The Phantom Coder

Ответы похожие на “GIT Local Setup”

Вопросы похожие на “GIT Local Setup”

Больше похожих ответов на “GIT Local Setup” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования