git 使用总结之详细步骤二

2 git入门

2.1 配置git

首先,是指定用户名和邮箱:

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

可以如下查看配置信息:

$ git config --list

2.2 创建一个本地repository

创建一个名为myGitTestrepository:

$ git init myGitTest

git_init

然后切换,文件路径到myGitTest

$ cd myGitTest

依次添加文件READMEsample.cpp

$ gedit README

$ gedit sample.cpp

README文件内随便写入一些内容:

This is my first Git and GitHub test conducted on my Ubuntu Wily system.

同理,在sample.cpp中写入一段代码:

#include 

int main()
{
    std::cout << "Hello Git!" << std::endl;
    return 0;
}

将这两个文件通过git添加到刚刚创建的myGitTest

$ git add README

$ git add smaple.c

现在,将myGitTest的变化更新情况提交:

$ git commit -m "create a git project"

git 使用总结之详细步骤二_第1张图片

2.3 同步到GitHub

在GitHub个人账户中,创建一个repository(我已经创建过了,所以会提示已经存在):

git 使用总结之详细步骤二_第2张图片

将新创建的repository的URL拷贝:

git path

使用下面的命令,将本地的repository提交到GitHub:

$ git remote add origin https://github.com/yhlleo/myGitTest.git

$ git push origin master

接着会提示输入GitHub的账户名和密码,输入就可以完成:

git 使用总结之详细步骤二_第3张图片

登陆到GitHub上,打开myGitTest如下:

git 使用总结之详细步骤二_第4张图片

你可能感兴趣的:(git)