“Git eingerichtet” Code-Antworten

Git -Setup


$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
$ git config --global push.default matching
$ git config --global alias.co checkout
$ git init

Spotless Stoat

Git -Setup

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 eingerichtet

git remote add origin https://github.com/simon3073/to-do-list-app.git
git branch -M main
git push -u origin main
Quaint Quelea

Ähnliche Antworten wie “Git eingerichtet”

Fragen ähnlich wie “Git eingerichtet”

Weitere verwandte Antworten zu “Git eingerichtet” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen