Questions marquées «git-push»

Pousse les modifications d'un dépôt Git local vers un dépôt distant

30
Comment supprimer une branche Git localement et à distance?
Je souhaite supprimer une branche localement et à distance. Échec des tentatives de suppression d'une branche distante $ git branch -d remotes/origin/bugfix error: branch 'remotes/origin/bugfix' not found. $ git branch -d origin/bugfix error: branch 'origin/bugfix' not found. $ git branch -rd origin/bugfix Deleted remote branch origin/bugfix (was 2a14ef7). $ git …

14
Comment puis-je pousser une nouvelle branche locale vers un référentiel Git distant et la suivre également?
Je veux pouvoir faire ce qui suit: Créer une branche locale basée sur une autre branche (distante ou locale) (via git branchou git checkout -b) Poussez la branche locale vers le référentiel distant (publication), mais rendez-la traçable git pullet git pushfonctionnera immédiatement. Comment je fais ça? Je sais --set-upstreamdans Git …






8
Comment forcer correctement un push Git?
J'ai installé un dépôt "principal" à distance non dénudé et l'ai cloné sur mon ordinateur. J'ai apporté des modifications locales, mis à jour mon référentiel local et repoussé les modifications dans mon référentiel distant. Les choses allaient bien jusque-là. Maintenant, je devais changer quelque chose dans le référentiel distant. Ensuite, …




11
Annuler une `` poussée de git ''
Voici ce que j'ai fait sur ma branche supposée stable ... % git rebase master First, rewinding head to replay your work on top of it... Fast-forwarded alpha-0.3.0 to master. % git status # On branch alpha-0.3.0 # Your branch is ahead of 'origin/alpha-0.3.0' by 53 commits. # nothing to …
592 git  git-push 




En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.