2

我是Github的新手,想为我的项目设置一个帐户,我将用Ruby on Rails编写它。我正在使用Virtual Box并在Ubuntu上设置我的 VM 操作系统。我为我的项目测试创建了一个 Github 帐户和一个新的 Repo。这些是我到目前为止所经历的步骤:

    cd test
    git config --global user.name ’My Name’
    git config --global user.email ’Myemailaddress’
    git init
    touch README
    add README
    git remote add origin git@github.com:myusername/myreponame.git
    git push origin master

直到这些步骤一切都很好,然后我创建了我的应用程序

    rails new test -T

现在在这一步之后,我真的不知道下一步该做什么。我应该将我所有的文件和目录添加到 Github Repo 还是只添加我要修改的那些。将所有文件和目录添加在一起的 git 语法是什么?如何提交和保存提交?我真的很感激任何建议......       

4

2 回答 2

2

现在,将您的项目导入 GIT,如下所示:

git add .
git commit

http://www.manniwood.com/starting_a_project_with_git.html

您可能还想将您的提交推送到 github:

git push

但是,如上所述,您最好通过教程:为了能够从 git 中受益,您需要了解自己在做什么,像“do X”这样的简单答案在这里没有多大帮助.

我最喜欢的是Pro Git——你需要从一开始就完成它2.5 Git 基础——至少使用遥控器。

于 2012-06-16T12:32:01.917 回答
2

只需在您的终端/评论提示符中执行此操作

~/.ssh
    ls
    ssh-keygen -t rsa -C "your register mail-id"
    ls
    vim id_rsa.pub

copy the manually keys 4 line and paste it in git Account settings--> ssh key--> add key

git config --global user.name "your register Name"
    git config --global user.email "your register mail-id"

    mkdir ~/YourFolderName
    cd ~/YourFolderName

    git init

select your user name in that you created repository
from that select currently upload repository and
select from git@github.com:registerName/ repository_name.git

    git clone git@github.com:registerName/repository_name.git

    git add *
    cd repository_name

    git add *
    git commit -m "repository_name"
    git push origin master


    cd
    cd ~/.ssh
于 2012-06-16T12:39:52.713 回答