0

我在 Gitorious 中创建了一个帐户,我想从我的计算机上传代码,但我不知道该怎么做。在互联网上搜索我意识到我无法观看从仪表板上传代码的菜单。

我创建了公共 SSH 密钥,并创建了一个项目和一个存储库。如何从我的计算机上传代码?

谢谢。

4

1 回答 1

0

答案 :

  1. 在gitorious上添加新项目和新仓库
  2. 在程序目录中的本地磁盘上:

    git init
    git add .
    git commit -m " name " 
    git remote add origin git@gitorious.org:my-project-name/my-git-repo.git
    git push origin master
    

如果您有错误:

   fatal: remote origin already exists.

然后 :

   git remote rm origin
   git remote add origin git@gitorious.org:my-project-name/my-git-repo.git
   git push origin master

它基于:

  1. 常见问题解答 - 如何将本地 Git 存储库指向 Gitorious?

  2. kosmas 在 Gitorious 中创建一个新的 git 存储库

  3. sagarun 的 Git 和 Gitorious 入门

于 2015-01-04T15:01:20.917 回答