Maven - Error Releasing Code to GitHub (Hangs After Push)

前端 未结 8 1319
悲哀的现实
悲哀的现实 2020-12-02 15:11

I\'m attempting to run the mvn release:prepare goal and it\'s hanging after the push. Any idea what I could be doing wrong?

[INFO] [INFO] -----         


        
8条回答
  •  庸人自扰
    2020-12-02 15:33

    These are the exact sequence of commands I followed to get rid of this error

    C:\Program Files (x86)\Git\bin>bash
    
    bash-3.1$ eval 'ssh-agent -s'
    SSH_AUTH_SOCK=/tmp/ssh-ZARFN11804/agent.11804; export SSH_AUTH_SOCK;
    SSH_AGENT_PID=10284; export SSH_AGENT_PID;
    echo Agent pid 10284;
    
    bash-3.1$ exec ssh-agent bash
    bash-3.1$ ssh-add "/c/Users/idntus/.ssh/id_rsa"
    Enter passphrase for /c/Users/idntus/.ssh/id_rsa:
    Identity added: /c/Users/idntus/.ssh/id_rsa (/c/Users/idntus/.ssh/id_rsa)
    
    bash-3.1$ mvn release:prepare release:perform
    

提交回复
热议问题