这是你首先要在自己的电脑上需要配置的参数,然后把id_rsa.pub中的内容全部复制到你的ssh帐号中建立github
git config --global user.name "user"
git config --global user.email "[email protected]"
建立公钥
ssh-keygen -t rsa -C "[email protected]"
在GitHub上创建自己的帐号,然后创建自己的仓库。先不勾选init选项。之后出现如下页面内容。
or create a new repository on the command line
echo "# aa" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin [email protected]:*******/aa.git
git push -u origin master
or push an existing repository from the command line
git remote add origin [email protected]:********/aa.git
git push -u origin master
按第一种程式配置好即可。
用第二种方式,已知本地库想和远程库做连接时
先从远程库更新。
把git push -u orgin master换成git pull origin master
之后就正常了。
你想给他人的开源库做提交。
1.首先把他人的库fork到自己的帐号中。
2然后从自己的帐号地址中把项目复制到本地用 git clone命令。
3之后提交自己的更新。
git add *
git commit -m "push"
git push origin master
4之后在自己的帐号中找到该项目,选择pull request标签,提交自己的变更内容。
5最后,如果对方同意你的请求,那就完成了。
在本地创建标签的时候
例如,
git tag v1.0
之后需要添加
git push origin --tags
命令才能在github中显示。
利用组织工作。
第一步,需要创建组织。建议在自己的帐号中创建组织,而非用 trun的方式把自己的帐号转成组织。
然后添加一个帐号
在team标签中,创建一个团队.之后在team中添加成员。
在people中,你就可以看到那个邀请了。
然后对方查看那个链接就可以找到 通过组织的邀请了。之后可以分配权限,创建仓库等任务。
标签:origin,git,帐号,创建,简易,GitHub,user,讲解,push From: https://blog.51cto.com/u_15932543/5994453