git(2)======== 連接倉庫後提交報錯
阿新 • • 發佈:2018-01-21
war fatal ref details repo caused date 目錄 rst
在共享完成密鑰後出現如下情況
[root@python3_ansible python]# git push -u origin master Username for ‘https://github.com‘: zcmdxj Password for ‘https://[email protected]‘: error: src refspec master does not match any. error: failed to push some refs to ‘https://github.com/zcmdxj/python.git‘View Code
只是由於本地倉庫為空導致的,在當前目錄下寫一個readme.md 的文件,提交文件的時候出現如下情況
[root@python3_ansible python]# git add readme.md [root@python3_ansible python]# git commit -m "init files" *** Please tell me who you are. Run git config --global user.email "[email protected]" #將這兩句話輸入然後重新提交就可以了 git config --global user.name "Your Name" to set your account‘s default identity.Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got ‘root@python3_ansible.(none)‘)
[root@python3_ansible python]# git config --global user.email "[email protected]" [root@python3_ansible python]# git config --global user.name "zcmdxj" [root@python3_ansible python]# git commitView Code-m "init files" [master (root-commit) 68e62fd] init files 1 file changed, 1 insertion(+) create mode 100644 readme.md [root@python3_ansible python]# git push -u origin master Username for ‘https://github.com‘: zcmdxj Password for ‘https://[email protected]‘: To https://github.com/zcmdxj/python.git ! [rejected] master -> master (fetch first) error: failed to push some refs to ‘https://github.com/zcmdxj/python.git‘ hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first merge the remote changes (e.g., hint: ‘git pull‘) before pushing again. hint: See the ‘Note about fast-forwards‘ in ‘git push --help‘ for details. [root@python3_ansible python]# git pull --rebase origin master warning: no common commits remote: Counting objects: 9, done. remote: Compressing objects: 100% (6/6), done. remote: Total 9 (delta 0), reused 0 (delta 0), pack-reused 0 Unpacking objects: 100% (9/9), done. From https://github.com/zcmdxj/python * branch master -> FETCH_HEAD First, rewinding head to replay your work on top of it... Applying: init files [root@python3_ansible python]# git push -u origin master Username for ‘https://github.com‘: zcmdxj Password for ‘https://[email protected]‘: Counting objects: 4, done. Compressing objects: 100% (2/2), done. Writing objects: 100% (3/3), 318 bytes | 0 bytes/s, done. Total 3 (delta 0), reused 0 (delta 0) To https://github.com/zcmdxj/python.git f649646..97877a0 master -> master Branch master set up to track remote branch master from origin. [root@python3_ansible python]#
git(2)======== 連接倉庫後提交報錯