recherche

Maison  >  Questions et réponses  >  le corps du texte

Impossible de pousser après avoir ajouté un entrepôt distant à git

J'ai un Alibaba Cloud ECS (CentOS7), et je dois y mettre le projet, mais je ne veux pas passer par github, je veux ajouter l'entrepôt distant directement à l'entrepôt git local et le pousser. directement à ECS.
Créez d'abord le répertoire du projet dans ECS et initialisez l'entrepôt : $ git init
Ajoutez l'entrepôt distant à l'entrepôt local :

$ git remote add ECSmaster ssh://username@IP/~/path/.git

Après l'avoir ajouté, il ne peut pas être poussé. Le message d'erreur est le suivant :

$ git push -u ECSmaster master
username@IP's password:
Counting objects: 180, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (75/75), done.
Writing objects: 100% (180/180), 32.15 KiB | 0 bytes/s, done.
Total 180 (delta 104), reused 180 (delta 104)
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To ssh://username@IP/~/cloudNote/.git
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'ssh://username@IP/~/cloudNote/.git'


$ git remote show ECSmaster
username@IP's password:
* remote ECSmaster
  Fetch URL: ssh://username@IP/~/cloudNote/.git
  Push  URL: ssh://username@IP/~/cloudNote/.git
  HEAD branch: (unknown)

Les opérations ci-dessus font référence à cet article : http://www.cnblogs.com/xiaoya901109/archive/2012/08/03/2620664.html

漂亮男人漂亮男人2767 Il y a quelques jours500

répondre à tous(2)je répondrai

  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-02 09:30:02

    Le paramètre --bare doit être ajouté lors de l'initialisation de l'entrepôt sur le serveur
    git init --bare

    répondre
    0
  • 为情所困

    为情所困2017-05-02 09:30:02

    Entrez ce qui suit sur le serveur distant :
    git config 'receive.denyCurrentBranch' warn

    Cette erreur est due à une mesure de protection de git master->master pour éviter une mauvaise opération

    répondre
    0
  • Annulerrépondre