思路:
一.远程仓库所需要的命令
二.通过https://github.com/网站注册并建立一个远程仓库
三.实例操作如何把文档放到远程仓库上
一.远程仓库相关命令
检出仓库:$ git clone git://github.com/jquery/jquery.git
查看远程仓库:$ git remote -v
添加远程仓库:$ git remote add [name] [url]
删除远程仓库:$ git remote rm [name]
修改远程仓库:$ git remote set-url –push [name] [newUrl]
拉取远程仓库:$ git pull [remoteName] [localBranchName]
推送远程仓库:$ git push [remoteName] [localBranchName]
*如果想把本地的某个分支test提交到远程仓库,并作为远程仓库的master分支,或者作为另外一个名叫test的分支,如下:
$git push origin test:master // 提交本地test分支作为远程的master分支
$git push origin test:test // 提交本地test分支作为远程的test分支
二.登录https://github.com建立一个新账号
1.先注册一个账号,https://github.com,创建自己的git,点repositiories,在点new
2.名称自定义(testgit),然后选public ,点create repository
3.添加key:右上角点自己的头像,选择settings,左侧选SSH and GPG keys
4.左侧点New SSH key,把linux机器上的~/.ssh/id_rsa.pub内容粘贴到这里
注:本地端的操作
key在服务器上生成秘钥
ssh-keygen
远程仓库放入生成的秘钥,添加完后自动收到一份邮件
5.把本地仓库推送到远程仓库
本机进入home的目录下
本地创建testgit仓库,并进入仓库目录
初始化仓库
git init
6.git remote add origin git@github.com:lizheng103/testgit.git (lizheng103为计算机名,testgit为仓库名)
远程创建的仓库testgit,名字尽量要和本地一致
三.实例创建一个文档推送到远程仓库上
1.创建一个文件
vi test.txt
2.git push-u origin master //把本地的testgit仓库推送到远程的testgit下
查看远程仓库新建的内容
3.修改文档后再查看仓库里的内容
vi test.txt 修改内容
git add test.txt
git commit -m “change test.txt”
修改完成后把本机的文件推送到远程仓库
git push
修改后的仓库内容
8.以后每次再推送,就可以直接git push
Git 教程系列文章:
GitHub 使用教程图文详解 http://www.linuxidc.com/Linux/2014-09/106230.htm
Git使用图文详细教程 http://www.linuxidc.com/Linux/2016-11/136781.htm
Ubuntu Git安装与使用 http://www.linuxidc.com/Linux/2016-11/136769.htm
Git 标签管理详解 http://www.linuxidc.com/Linux/2014-09/106231.htm
Git 分支管理详解 http://www.linuxidc.com/Linux/2014-09/106232.htm
Git 远程仓库详解 http://www.linuxidc.com/Linux/2014-09/106233.htm
Git 本地仓库(Repository)详解 http://www.linuxidc.com/Linux/2014-09/106234.htm
Git 服务器搭建与客户端安装 http://www.linuxidc.com/Linux/2014-05/101830.htm
Git 概述 http://www.linuxidc.com/Linux/2014-05/101829.htm
分享实用的GitHub 使用教程 http://www.linuxidc.com/Linux/2014-04/100556.htm
Git从入门到学会 http://www.linuxidc.com/Linux/2016-10/135872.htm
Git基本操作详解 http://www.linuxidc.com/Linux/2016-10/135691.htm
Git 的详细介绍:请点这里
Git 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-02/140737.htm