new bird in github
Posted fariver
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了new bird in github相关的知识,希望对你有一定的参考价值。
首次使用先要建立本地github信息:
git config - -global user.name newbird
git config - -global user.email [email protected]
ssh-keygen -t rsa -C [email protected]
//该命令将会在~/.ssh/下生成公钥id_rsa.pub
//打开该文件,将公钥复制到github用户主页中的“SSH and GPG keys”的New SSH key中
//打开主页中所需要要同步的repostory,选择“clone and download”选择“clone with ssh”
//将生成的ssh key复制,并在shell中执行git "ssh key you copyed",这时便将repository同步到本地了
修改本地repository并push到主页:
git add filename //filename可省
git commit -m “ xxxxxx” branchname -a //branchname添加到branch分支, 可省
git push origin master //origin master可省
以上是关于new bird in github的主要内容,如果未能解决你的问题,请参考以下文章
1118 Birds in Forest (25分) 并查集