Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 bitbucket 中创建了一个存储库。现在我要在我的电脑上写一个java项目。问题是,我应该怎么做才能将文件放入 bitbucket?也就是说,我是不是要在eclipse里写我的程序,然后把.java文件复制到我电脑的项目文件夹中,然后使用git add和git commit命令呢?
谢谢
在 bitbucket 中创建一个新的存储库。当您到达最后一个屏幕时,它会询问您是否要导入现有项目。 选择导入,它将为您提供在计算机上键入以创建“远程”的命令以及将更改推送到远程 bitbucket 存储库的命令。
更多详细信息,请访问https://confluence.atlassian.com/display/BITBUCKET/Importing+code+from+an+existing+project#Importingcodefromanexistingproject-Importanexisting,unversionedcodeprojecttoanemptyrepository
你需要推它。。
git remote add origin git@git:Projectname.git
git push -u 起源大师