GitHub 建立远程仓库
终端所有信息:
Last login: Fri Aug 14 08:58:01 on console
wuxiaoyuan:~ lan$ ls -al ~/.ssh
ls: /Users/lan/.ssh: No such file or directory
wuxiaoyuan:~ lan$ mkdir .ssh
wuxiaoyuan:~ lan$ cd /Users/lan/.ssh
wuxiaoyuan:.ssh lan$ ssh-keygen -t rsa -b 4096 -C "1149779588@qq.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/lan/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/lan/.ssh/id_rsa.
Your public key has been saved in /Users/lan/.ssh/id_rsa.pub.
The key fingerprint is:
d6:62:85:4f:43:b1:60:4b:85:be:8d:43:3b:48:04:0c 1149779588@qq.com
The key's randomart image is:
+--[ RSA 4096]----+
| Eo.. +o+. |
| . .o.= . |
| . .o = |
| . o= . |
| . oS=o |
| .o*.. |
| o |
| |
| |
+-----------------+
wuxiaoyuan:.ssh lan$ pbcopy < ~/.ssh/id_rsa.pub
wuxiaoyuan:.ssh lan$ cat id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDIUvEB2QI2ygbbnIkbKCBqTq1eYLb+uQV4ZFioNOqF1DNHh7tIFGl5UPEuFL+hqhz4rWANjisEv3zaBgXCgUlFPP9jOy0QlUN03K+nVVWzj++Jte0e3drD1MDwOAyV1ShD6sy8gsQp9mplnUn0QqS3zdlVe2otrSpfGPpPnD5L/Sv7uV27xszv8vJd73p2Wyayn4cIQ3rHmmvdOWbeQbvN54nGZBUFFt6KIdwLAQ0+ZeLCJavYoL8Ts2PsyzzSPmyHWUfneCpPrBY8CDkYQC3tsftt7ouKSNFURx/hU5eDzdAgu20pNUPasAZLk76VedhhijBU2i9P5OyQXtuwraTDDv2ih5rwvXKG7KgSMdA2UALDOtPF/mF2rftWY4XR7YzOXnsT+i4BXEVs+wmQ0JBMAyo05dCVzIVxglMc8ZEmCOATqFEgbtmqu+eX1DzudTSvQWsp8oO/he2J5g895yEKAXadiXB9VJKsL7Alaf2gNcmT+zD2/MakGtZJKvXDA7x99Ll2aWbbUtJkgpl1F6LFm7MrFG5xshj8cx7JMgq8muTcI+NZiW5c2NNA+6I/5zJwqXyUzhc6Ehl0ek4l6E8khedsywhcmgQQjwd3nXbDqQA1+of3ADCIOCGnvS1ARi3lgRTSFVBi+HwN35a3ZP3lWn+sFgkrPsVbBkiNzd9YWw== 1149779588@qq.com
wuxiaoyuan:.ssh lan$ ssh -T git@github.com
The authenticity of host 'github.com (192.30.252.129)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)?
Host key verification failed.
wuxiaoyuan:.ssh lan$ ssh -T git@github.com
The authenticity of host 'github.com (192.30.252.128)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.128' (RSA) to the list of known hosts.
Hi wusang! You've successfully authenticated, but GitHub does not provide shell access.
wuxiaoyuan:.ssh lan$ cd /Users/lan/Desktop/张三
wuxiaoyuan:张三 lan$ git clone https://github.com/wusang/lanou02.git
Cloning into 'lanou02'...
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (5/5), done.
Checking connectivity... done.
wuxiaoyuan:张三 lan$ git status
fatal: Not a git repository (or any of the parent directories): .git
wuxiaoyuan:张三 lan$ cd /Users/lan/Desktop/张三/lanou02
wuxiaoyuan:lanou02 lan$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: lanou02/lanou02.xcodeproj/project.pbxproj
new file: lanou02/lanou02.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file: lanou02/lanou02/AppDelegate.h
new file: lanou02/lanou02/AppDelegate.m
new file: lanou02/lanou02/Base.lproj/LaunchScreen.xib
new file: lanou02/lanou02/Base.lproj/Main.storyboard
new file: lanou02/lanou02/Images.xcassets/AppIcon.appiconset/Contents.json
new file: lanou02/lanou02/Info.plist
new file: lanou02/lanou02/ViewController.h
new file: lanou02/lanou02/ViewController.m
new file: lanou02/lanou02/main.m
new file: lanou02/lanou02Tests/Info.plist
new file: lanou02/lanou02Tests/lanou02Tests.m
wuxiaoyuan:lanou02 lan$ open.
-bash: open.: command not found
wuxiaoyuan:lanou02 lan$ open .
wuxiaoyuan:lanou02 lan$ git add .
wuxiaoyuan:lanou02 lan$ git commit -am "添加了工程"
[master 41b1085] 添加了工程
13 files changed, 762 insertions(+)
create mode 100644 lanou02/lanou02.xcodeproj/project.pbxproj
create mode 100644 lanou02/lanou02.xcodeproj/project.xcworkspace/contents.xcworkspacedata
create mode 100644 lanou02/lanou02/AppDelegate.h
create mode 100644 lanou02/lanou02/AppDelegate.m
create mode 100644 lanou02/lanou02/Base.lproj/LaunchScreen.xib
create mode 100644 lanou02/lanou02/Base.lproj/Main.storyboard
create mode 100644 lanou02/lanou02/Images.xcassets/AppIcon.appiconset/Contents.json
create mode 100644 lanou02/lanou02/Info.plist
create mode 100644 lanou02/lanou02/ViewController.h
create mode 100644 lanou02/lanou02/ViewController.m
create mode 100644 lanou02/lanou02/main.m
create mode 100644 lanou02/lanou02Tests/Info.plist
create mode 100644 lanou02/lanou02Tests/lanou02Tests.m
wuxiaoyuan:lanou02 lan$ git push
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
When push.default is set to 'matching', git will push local branches
to the remote branches that already exist with the same name.
In Git 2.0, Git will default to the more conservative 'simple'
behavior, which only pushes the current branch to the corresponding
remote branch that 'git pull' uses to update the current branch.
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
Username for 'https://github.com': wusang
Password for 'https://wusang@github.com':
Counting objects: 24, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (21/21), done.
Writing objects: 100% (23/23), 8.51 KiB | 0 bytes/s, done.
Total 23 (delta 3), reused 0 (delta 0)
To https://github.com/wusang/lanou02.git
c054ac6..41b1085 master -> master
wuxiaoyuan:lanou02 lan$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: lanou02/lanou02/ViewController.h
modified: lanou02/lanou02/ViewController.m
no changes added to commit (use "git add" and/or "git commit -a")
wuxiaoyuan:lanou02 lan$ git add .
wuxiaoyuan:lanou02 lan$ git commit -am "从暂存库添加到本地仓库,添加了1111"
[master f27a890] 从暂存库添加到本地仓库,添加了1111
2 files changed, 4 insertions(+)
wuxiaoyuan:lanou02 lan$ git push
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
When push.default is set to 'matching', git will push local branches
to the remote branches that already exist with the same name.
In Git 2.0, Git will default to the more conservative 'simple'
behavior, which only pushes the current branch to the corresponding
remote branch that 'git pull' uses to update the current branch.
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 607 bytes | 0 bytes/s, done.
Total 6 (delta 4), reused 0 (delta 0)
To https://github.com/wusang/lanou02.git
41b1085..f27a890 master -> master
wuxiaoyuan:lanou02 lan$
GitHub 建立远程仓库的更多相关文章
- windows下使用git和github建立远程仓库
转自(http://www.bubuko.com/infodetail-430228.html) 从昨天开始就在看git的使用,因为在Windows下很多命令行操作都比较坑爹,但是今天再走了无数弯路之 ...
- git初次建立远程仓库问题
git "Could not read from remote repository.Please make sure you have the correct access rights. ...
- Android基础新手教程——1.5.2 Git之使用GitHub搭建远程仓库
Android基础新手教程--1.5.2 Git之使用GitHub搭建远程仓库 标签(空格分隔): Android基础新手教程 本节引言: 在上一节中.我们学习了怎样使用Git.构建我们的本地仓库.轻 ...
- git设置github的远程仓库的相关操作
git能够把github作为远程仓库,本地可以进行推送有关变更,从而多人可以进行协作开发工作. 1 ssh-keygen -t rsa -C "your-email@163. ...
- Git的本地仓库与GitHub的远程仓库
gitHub是一个面向开源及私有软件项目的托管平台,因为只支持git 作为唯一的版本库格式进行托管,故名gitHub.GitHub 是目前为止最大的开源 Git 托管服务,并且还是少数同时提供公共代码 ...
- 使用github作为远程仓库的常见git操作
[git上传本地代码到github新建仓库]一.建立git本地仓库 1.在本地目标文件夹(Code)中执行命令: git init //初始化本地仓库二.将上传到github的项目文件添加到本地仓库中 ...
- 使用git建立远程仓库,让别人git clone下来
首先, 如果你的ssh没有安装的话,要安装ssh服务端.ubuntu是很简单 sudo apt-get install openssh-server 1,建立你的git 目录. ourunix@ubu ...
- github创建远程仓库
创建远程仓库 当你已经在本地创建了一个Git仓库后,又想在GitHub创建一个Git仓库,并且让这两个仓库进行远程同步,这样,GitHub上的仓库既可以作为备份,又可以让其他人通过该仓库来协作,真是一 ...
- git用法小结(1)--建立远程仓库
最近一直在学习使用git来管理自己的程序,总是今天东学一点,明天西凑一点,到用的时候,总是有些茫然不知所措. 在博客园里看见一篇老好的文章,教我们做笔记啦,但是做完笔记还是要记得总结哦! 来吧,让我们 ...
随机推荐
- Project Euler 26 Reciprocal cycles
题意:求1到n中所有数的倒数中循环小数循环体最长的数 解法:如果一个数的质因子只有2和5,那么这个数的倒数一定不是一个循环小数.如果一个数含有质因子2或5,那么它的循环体和去掉质因子2和5之后的数的循 ...
- Travel(HDU 4284状压dp)
题意:给n个城市m条路的网图,pp在城市1有一定的钱,想游览这n个城市(包括1),到达一个城市要一定的花费,可以在城市工作赚钱,但前提有工作证(得到有一定的花费),没工作证不能在该城市工作,但可以走, ...
- HDU 3567 Eight II BFS预处理
题意:就是八数码问题,给你开始的串和结束的串,问你从开始到结束的最短且最小的变换序列是什么 分析:我们可以预处理打表,这里的这个题可以和HDU1430魔板那个题采取一样的做法 预处理打表,因为八数码问 ...
- HDU 3289 Cat VS Dog (二分匹配 求 最大独立集)
题意:每个人有喜欢的猫和不喜欢的狗.留下他喜欢的猫他就高心,否则不高心.问最后最多有几个人高心. 思路:二分图求最大匹配 #include<cstdio> #include<cstr ...
- 转:Unicode字符集和多字节字符集关系
原文地址: http://my.oschina.net/alphajay/blog/5691 unicode.ucs-2.ucs-4.utf-16.utf-32.utf-8 http://stallm ...
- BNUOJ-26475 Cookie Selection 堆,线段树等
题目链接:http://www.bnuoj.com/bnuoj/problem_show.php?pid=26475 题意:每次输入一个操作,如果是数字,那么放入一个容器中,如果是#号,取出当前容器中 ...
- xerox Network system
XNS协议 IPX/SPX 是基于施乐的XEROX’S Network System(XNS)协议,而SPX是基于施乐的XEROX’S SPP(Sequenced Packet Protocol:顺序 ...
- Google maps library的使用
公司的项目中用到了google地图API, 使用Google API开发就会用到Marker, 用来在google 地图上标注位置 但是google marker使用过程中也有个问题,就是如果在goo ...
- configparser
configparser configparser模块是python中用来处理类似于windows的ini格式文件, 一个ini文件的格式 [section] key = value
- MSSQLSERVER数据库- SP_EXECUTESQL的使用
EXEC和SP_EXECUTESQL有什么区别呢? 1,它们之间最大的区别是嵌入式的参数,如下面一个语句 declare @sql nvarchar() declare @id varchar() ' ...