2

抱歉,我还在学习 git,所以这可能是一个非常基本的问题。但是如何在不克隆的情况下连接到远程存储库,以便我可以提交/推送到存储库。

4

2 回答 2

5

您正在寻找remote add

git remote add origin git@bitbucket.org:your_account/your_repo.git
于 2013-06-26T04:51:12.977 回答
2

我想这可能会奏效。

  1. 打开一个空文件夹
  2. git init
  3. git add remote remote_name remote_address
  4. git fetch remote_name
  5. 通过创建新的来添加您的更改
  6. git add your file
  7. `git commit -m "提交信息"
  8. git 推送远程名称
于 2013-06-26T04:49:57.513 回答