关于Github和一些Git命令(更新中)

生成你的Public Key

ssh-****** –C “你的email地址 “ –t rsa


登陆github.Com 网站,在SSH Public Keys 设置你的SSH Public Keys (在id_rsa.pub 一般在~/.ssh文件夹下可以找到)


设置你的github 用户名:

git config --global github.user caijiamx


git config --global user.name "Firstname Lastname"

git config --global user.email "[email protected]"


设置你的git账户的token: (https://github.com/settings/applications#personal-access-tokens

Git config --global github.token 0123456789yourf0123456789token


复制一个repository:

git clone [email protected]:alex/demo-project.git




Ref:

http://*.com/questions/9287911/get-git-username-to-link-to-profile/9287955#9287955

http://www.xbc.me/install-git-on-windows/

http://www.xbc.me/git-commands/



Github上传代码菜鸟超详细教程



最近需要将课设代码上传到Github上,之前只是用来fork别人的代码。

这篇文章写得是windows下的使用方法。

第一步:创建Github新账户

第二步:新建仓库

关于Github和一些Git命令(更新中)

第三部:填写名称,简介(可选),勾选Initialize this repository with a README选项,这是自动创建REAMDE.md文件,省的你再创建。

关于Github和一些Git命令(更新中)

第四步:安装Github shell程序,地址:http://windows.github.com/

第五步:打开Git Shell,输入以下命令生成**来验证身份

ssh-****** -C '[email protected]' -t rsa

连续三个回车之后会在windows当前用户目录下生成.ssh文件夹,和linux一样。

关于Github和一些Git命令(更新中)

把文件夹下的id_rsa.pub文件内容全部复制。

然后打开github账户设置,如图

关于Github和一些Git命令(更新中)

打开ssh keys

关于Github和一些Git命令(更新中)
右上角点击add ssh key

关于Github和一些Git命令(更新中)

然后在title随便输入,key栏粘贴刚才的**。

第六步:在Git Shell下输入命令测试刚才的公钥是否认证正确。

ssh -T [email protected]

正确结果会显示:

Warning:Permanently added 'github.com,207.97.227.239' (RSA) to the list of known hosts.
  Hi Flowerowl! You've successfully authenticated, but GitHub does not provide shell access.

warning 不用理会。

第七步:clone刚才新建的repository 到本地,输入命令:

关于Github和一些Git命令(更新中)

 git clone https://github.com/Flowerowl/stumansys.git

这时会在目录下生成:

关于Github和一些Git命令(更新中)

第八步:将想上传的代码目录拷贝到此文件夹下:

关于Github和一些Git命令(更新中)

第九步:切换到Git shell 命令行下,输入命令:

git init
git add .
git commit -m 'stumansys'
git remote add origin https://github.com/Flowerowl/stumansys.git   (这步也许是多余的)
git push origin master

如果执行git remote add origin

https://github.com/Flowerowl/stumansys.git

,出现错误:

  fatal: remote origin already exists

则执行以下语句:

  git remote rm origin

再往后执行git remote add originhttps://github.com/Flowerowl/stumansys.git即可。

在执行git push origin master时,报错:

  error:failed to push som refs to.......

则执行以下语句:

  git pull origin master

先把远程服务器github上面的文件拉先来,再push 上去。

关于Github和一些Git命令(更新中)

最后,你可以去项目页面查看了~~代码上传成功!


http://lazynight.me/2898.html

http://artori.us/git-github-usage/

http://serholiu.com/github-share-code