“git push origine main ne fonctionne pas” Réponses codées

git push origine main ne fonctionne pas

When pushing your code, "main" is the branch name you're pushing to. Check if that's the branch on your github. 
If that doesn't work, you can start from scratch and remove all git instances by running

rm -rf .git

Then start the process all over again and set your branch name to "main" then run "git push origin main"
guruwalker

Git Push Origin Master ne fonctionne pas

Possible errors:

1. Origin - you maybe be pushing to the wrong origin.
git set-url origin [email protected]:username/test.git

2. Branch - you may be on the wrong branch. switch to the right branch and then push
git checkout branch

3. Add & Commit - remove to use these commands before pushing
git add .
git commit -m "commit message"
RealMyth21

Réponses similaires à “git push origine main ne fonctionne pas”

Questions similaires à “git push origine main ne fonctionne pas”

Plus de réponses similaires à “git push origine main ne fonctionne pas” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code