github团队使用记录
Last login: Sat Nov 4 09:20:15 on ttys000
bogon:~ neveszhang$ git clone git@github.com:031502243/Classmate-book.git
Cloning into 'Classmate-book'...
Enter passphrase for key '/Users/neveszhang/.ssh/id_rsa':
remote: Counting objects: 133, done.
remote: Compressing objects: 100% (92/92), done.
remote: Total 133 (delta 14), reused 128 (delta 12), pack-reused 0
Receiving objects: 100% (133/133), 817.46 KiB | 230.00 KiB/s, done.
Resolving deltas: 100% (14/14), done.
bogon:~ neveszhang$ cd classmate-book
bogon:classmate-book neveszhang$ ls
Classmate README.md
bogon:classmate-book neveszhang$ git remote -v
origin git@github.com:031502243/Classmate-book.git (fetch)
origin git@github.com:031502243/Classmate-book.git (push)
bogon:classmate-book neveszhang$ git remote add upstrean git@github.com:2017FZU/Classmate-book.git //额..拼写错误造成了非常多的尴尬
bogon:classmate-book neveszhang$ git remote -v
origin git@github.com:031502243/Classmate-book.git (fetch)
origin git@github.com:031502243/Classmate-book.git (push)
upstrean git@github.com:2017FZU/Classmate-book.git (fetch)
upstrean git@github.com:2017FZU/Classmate-book.git (push)
bogon:classmate-book neveszhang$ git fetch upstream
fatal: 'upstream' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
bogon:classmate-book neveszhang$ ls
Classmate README.md
bogon:classmate-book neveszhang$
bogon:classmate-book neveszhang$ git branch
- master
bogon:classmate-book neveszhang$ git branch -a - master
remotes/origin/Booomshaker
remotes/origin/HEAD -> origin/master
remotes/origin/How-Come
remotes/origin/K
remotes/origin/NevesLalala
remotes/origin/hbing
remotes/origin/hsh1234
remotes/origin/master
remotes/origin/winforbest
remotes/origin/zora02
bogon:classmate-book neveszhang$ git checkout -b Neveslalala origin/master
Branch Neveslalala set up to track remote branch master from origin.
Switched to a new branch 'Neveslalala'
bogon:classmate-book neveszhang$ ls
Classmate README.md
bogon:classmate-book neveszhang$ git checkout -b Neves origin/NevesLalala
Branch Neves set up to track remote branch NevesLalala from origin.
Switched to a new branch 'Neves'
bogon:classmate-book neveszhang$ git remote add upstrean git@github.com:2017FZU/Classmate-book.git //upstrean
fatal: remote upstrean already exists.
bogon:classmate-book neveszhang$ git remote add upstream git@github.com:2017FZU/Classmate-book.git //upstream
bogon:classmate-book neveszhang$ git remote -v
origin git@github.com:031502243/Classmate-book.git (fetch)
origin git@github.com:031502243/Classmate-book.git (push)
upstream git@github.com:2017FZU/Classmate-book.git (fetch)
upstream git@github.com:2017FZU/Classmate-book.git (push)
upstrean git@github.com:2017FZU/Classmate-book.git (fetch)
upstrean git@github.com:2017FZU/Classmate-book.git (push)
bogon:classmate-book neveszhang$ git fetch upstream
Enter passphrase for key '/Users/neveszhang/.ssh/id_rsa':
remote: Counting objects: 93, done.
remote: Compressing objects: 100% (51/51), done.
remote: Total 93 (delta 32), reused 78 (delta 25), pack-reused 0
Unpacking objects: 100% (93/93), done.
From github.com:2017FZU/Classmate-book
- [new branch] Booomshaker -> upstream/Booomshaker
- [new branch] How-Come -> upstream/How-Come
- [new branch] K -> upstream/K
- [new branch] NevesLalala -> upstream/NevesLalala
- [new branch] hbing -> upstream/hbing
- [new branch] hsh1234 -> upstream/hsh1234
- [new branch] master -> upstream/master
- [new branch] winforbest -> upstream/winforbest
- [new branch] zora02 -> upstream/zora02
//把要上传的文件放到classmate-book文件夹下
bogon:classmate-book neveszhang$ git add .
bogon:classmate-book neveszhang$ git commit -m "ui&sql method"
[Neves 81f71e2] ui&sql method
7 files changed, 24 insertions(+)
create mode 100644 .DS_Store
create mode 100644 ISqlmethods.java
create mode 100644 ui/7AE27C5C3668BA8686713856E3720E51.jpg
create mode 100644 ui/917EAC099B5888E584D34818837E2665.jpg
create mode 100644 ui/9E56D480EDCEDBC1B2DF4302503A6F2A.jpg
create mode 100644 ui/B7ABABC02B7A82A97CBAC204D2978CB1.jpg
create mode 100644 ui/E338393866D3D10874A72F63128299DD.jpg
bogon:classmate-book neveszhang$ git push
fatal: The upstream branch of your current branch does not match
the name of your current branch. To push to the upstream branch
on the remote, use
git push origin HEAD:NevesLalala
To push to the branch of the same name on the remote, use
git push origin Neves //选择这条语句..不小心新建了一个分支
To choose either option permanently, see push.default in 'git help config'.
bogon:classmate-book neveszhang$ git brancj
git: 'brancj' is not a git command. See 'git --help'.
The most similar command is
branch
bogon:classmate-book neveszhang$
bogon:classmate-book neveszhang$ git checkout -b NevesLalala origin/NevesLalala
fatal: A branch named 'NevesLalala' already exists.
bogon:classmate-book neveszhang$ git checkout NevesLalala
error: Your local changes to the following files would be overwritten by checkout:
.DS_Store
Please commit your changes or stash them before you switch branches.
Aborting
bogon:classmate-book neveszhang$ git push origin Neves
Enter passphrase for key '/Users/neveszhang/.ssh/id_rsa':
Counting objects: 10, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (10/10), done.
Writing objects: 100% (10/10), 75.24 KiB | 18.81 MiB/s, done.
Total 10 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), done.
To github.com:031502243/Classmate-book.git
- [new branch] Neves -> Neves
//登录自己的girhub上就能查看这个clone下来的库了,然后pull request
github团队使用记录的更多相关文章
- 超详细!Github团队协作教程(Gitkraken版)
超详细!Github团队协作教程(Gitkraken版) 一.前期工作 1. 在 Github 上创建 organization step1. 登录Github网站,点击右上角头像,选择 " ...
- Github团队开发示例(二)
Github团队开发示例(二) 作者:Grey 原文地址:http://www.cnblogs.com/greyzeng/p/6063765.html 接之前讲的Github团队开发示例(一),本文主 ...
- Github团队开发示例(一)
Github团队开发示例(二) 作者:Grey 原文地址:http://www.cnblogs.com/greyzeng/p/6044837.html 我们可以在Github上管理自己的团队项目.团队 ...
- 从零开始,创建GitHub团队开发环境
从零开始,创建GitHub团队开发环境 GitHub提供免费的团队环境,不过免费仓库容量是300MB,请大家注意. 申请GitHub个人账号 1. 使用浏览器访问GitHub主页.如果使用IE,尽量不 ...
- Github: 团队账号:https://github.com/ChenRuTing
Github: 团队账号:https://github.com/ChenRuTing 以后我们做好的代码会随时更新上传到这里,请老师届时帮我们看看.谢谢老师.
- GitHub团队协作流程
说来惭愧,这么长时间,第一次参与修改开源项目,所以整理了一份GitHub团队协作流程,作为备忘,文章大部分内容参考https://www.cnblogs.com/schaepher/p/4933873 ...
- 转:GitHub团队项目合作流程
转自:https://www.cnblogs.com/schaepher/p/4933873.html GitHub团队项目合作流程 已在另一篇博客中写出关于以下问题的解决,点此进入: 同步团队项 ...
- [gitHub实践] 实践记录
[gitHub实践] 实践记录 版权2019.4.19更新 Q1:本地仓库和远程仓库连接提示输入用户名密码 本地仓库和远程仓库连接有两种方式 本地初始化建立一个仓库,远程也建立了一个仓库 本地建立仓库 ...
- Android Studio && GitHub 团队多人一起开发
曾几何时,花了两天的时间搞了合并项目,搞得乱七八糟der,但最终还是被我搞定了,too 乱 to 做笔记.过了几个月,也就是前几天,抱着从头开始的决心,再次尝试,然鹅并没有结果.今天,再一次重新开始, ...
随机推荐
- Spring-Task思维导图
最近在搞一个定时任务的相关东西,为了方便记忆,这里将知识点总结成一个思维导图.后续也会通过思维导图的方式发布博客.
- Log4j的邮件发送类SMTPAppender改造
在开发过程中,我们有时需要将重要的错误日志通过邮件发送给相关的责任人,这样能即时发现错误,即时解决.如使用Log4J,一般会做如下配置: log4j.rootLogger = debug,mail # ...
- c++语言对c的扩充
1.命名空间的使用 参见下列链接:http://www.cnblogs.com/uniqueliu/archive/2011/07/10/2102238.html 需要注意的地方:如果使用了命名空间s ...
- Java中异常发生时代码执行流程
异常与错误: 异常: 在Java中程序的错误主要是语法错误和语义错误,一个程序在编译和运行时出现的错误我们统一称之为异常,它是VM(虚拟机)通知你的一种方式,通过这种方式,VM让你知道,你(开发人员) ...
- 深入出不来nodejs源码-内置模块引入初探
重新审视了一下上一篇的内容,配合源码发现有些地方说的不太对,或者不太严谨. 主要是关于内置模块引入的问题,当时我是这样描述的: 需要关注的只要那个RegisterBuiltinModules方法,从名 ...
- hive 中的正则表达式
背景: 前几天拿来apache日志,用hive的正则进行匹配,发现匹配出来的字段算是NULL,但是我用RegexBuddy工具显示能够匹配的到啊!例子如下(我拿正常的apache日志来比较,我的apa ...
- javaer有福了,基于Web的mysql数据库管理工具TreeSoft发布了。
基于Web的数据库管理工具TreeSoft数据库管理系统发布快3年了,版本不断更快速迭代开发中,QQ群也积累了300多位粉丝,虽然时不时也掉粉,但总体还是增加中.大家虽然捐赠不多,但是苍蝇再小也是肉啊 ...
- 模版方法模式(Template Method)
1.概念 在模板模式(Template Pattern)中,一个抽象类公开定义了执行它的方法的方式/模板.它的子类可以按需要重写方法实现,但调用将以抽象类中定义的方式进行.这种类型的设计模式属于行为型 ...
- Activity正确获取View宽高
在View的measure完成后,一般可以通过getMeasureWidth/getMeasureWidth方法可以正确的获取View的宽高,而在特殊情况下,可能需要多次measure才能确定最终的测 ...
- Java设计模式之【单例模式】
Java设计模式之[单例模式] 何为单例 在应用的生存周期中,一个类的实例有且仅有一个 当在一些业务中需要规定某个类的实例有且仅有一个时,就可以用单例模式 比如spring容器默认初始化的实例就是单例 ...