“Comment créer un référentiel” Réponses codées

Configurer le référentiel GIT

# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin [email protected]:username/new_repo #ssh
# Now push
git push -u origin master
Caleb McNevin

Télécharger un nouveau repo sur git

echo "# Can-I-Shop-2" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/username/projectname.git
git push -u origin master
                
Victorious Vendace

Créer un nouveau référentiel sur la ligne de commande

git init
git add README.MD
git commit -m "commit message"
git remote add origin git url_of_github_repo
git push origin master
Cheerful Cheetah

Créer un nouveau référentiel sur la ligne de commande

echo "# python_dailyPractice" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/G-M-A-Al/python_dailyPractice.git
git push -u origin main
Open Otter

Créer un nouveau référentiel à l'aide de la ligne de commande

echo "# facebook-clone" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/sulaimanwebdev/facebook-clone.git
git push -u origin main
Thoughtful Toad

Comment créer un référentiel

echo "# my-desktop" >> README.md
git init
git add . 
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:yourcreatedgoeshere.git
git push -u origin main
Clear Cow

Réponses similaires à “Comment créer un référentiel”

Questions similaires à “Comment créer un référentiel”

Plus de réponses similaires à “Comment créer un référentiel” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code