抱歉,我还在学习git所以这可能是一个非常基本的问题。但是如何在不克隆它的情况下连接到远程存储库以便我可以提交/推送到repo。
答案 0 :(得分:3)
您正在寻找remote add
:
git remote add origin git@bitbucket.org:your_account/your_repo.git
答案 1 :(得分:2)
我想这可能有用。
git init
git add remote remote_name remote_address
git fetch remote_name
git add your file