- 我在github上創建了一個新的存儲庫。
- 我選擇了添加README.md的選項之一。
- 我然後cd到我的硬盤上的項目。
- 我運行git init:在/Users/myusername/github/myproject/.git/中初始化空的Git存儲庫
我運行了「git add」。然後「混帳提交-m‘項目文件’」,這本回應:承諾沒有顯示在github上
[master (root-commit) ca52fe0] project files 981 files changed, 257939 insertions(+), 0 deletions(-) create mode 100644 index.php create mode 100644 license.txt create mode 100644 readme.html create mode 100644 wp-activate.php ...
- 然後我跑了「git的遠程添加原產https://github.com/myusername/myproject.git」
- 然後我跑了「混帳推起源大師」
- 然後我跑了「git狀態」,表示什麼都沒有提交
但我看回購和我的「我的項目文件」提交不存在。所以然後我跑git拉,得到這個:
You asked me to pull without telling me which branch you
want to merge with, and 'branch.master.merge' in
your configuration file does not tell me, either. Please
specify which branch you want to use on the command line and
try again (e.g. 'git pull <repository> <refspec>').
See git-pull(1) for details.
然後git推,並再次檢查,仍然我的提交不在github回購。我唯一能看到提交的時候是當我運行「git log」的時候:
MacBook-myproject myusername$ git log
commit ca52fe090e6dbf1b6aa6ee51c3283efbe7549904
Author: User <myemailaddress>
Date: Sat Jun 23 19:22:05 2012 -0400
project files
我跟着github的方向,我可以做得最好。我究竟做錯了什麼?
你的'origin'版本庫URL是否正確?試試'$ git remote -v'來驗證。 –
當我運行上面的命令,我得到這個:原始\t https://github.com/username/gitproject.git(fetch) 原點\t https://github.com/username/gitproject.git(推) – JohnMerlino
你是從字面上得到這些URL還是你改變「用戶名」和「gitproject.git」是更通用的? –