git的新手。我将存储库克隆到本地,在本地创建一个分支,更改并添加了一些文件,提交了更改,然后尝试使用以下命令序列将其推回远程并出现错误。 有人可以指出导致错误的原因是什么吗?
bash-4.4$ cd /home/abc/M3-release4checkin
bash-4.4$ git clone https://bitbucket.agile.com/scm/proj1/repo1.git
bash-4.4$ cd repo1/frontend
bash-4.4$ pwd
/home/abc/M3-release4checkin/repo1/frontend
bash-4.4$ git status
On branch develop
Your branch is up to date with 'origin/develop'.
nothing to commit, working tree clean
bash-4.4$ git checkout -b M3-release-frontend
Switched to a new branch 'M3-release-frontend'
bash-4.4$ cp -r ../../{security,utils,sample_responses,sample_trades,sa_trade_archive,sa_trade_data} .
bash-4.4$ git add --all
bash-4.4$ git commit -m "CHG#-1625: Milestone3 release (frontend)"
[M3-release-frontend d771fb7] CHG#-1625: Milestone3 release (frontend)
Committer: Joe Doe <joedoe@localhost.localdomain>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:
git config --global user.name "Your Name"
git config --global user.email you@example.com
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
25 files changed, 5111 insertions(+), 143 deletions(-)
create mode 100755 frontend/common/avsc_lib.py
...
bash-4.4$ git push --set-upstream origin/develop M3-release-frontend
fatal: 'origin/develop' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我被添加为存储库(BitBucket)的“管理员”之一。
答案 0 :(得分:-2)
以下是我所做的: