【git】学习路径失败了

期初规划:搭建git远程服务器  使用gitlab作为管理工具

过程遇到的问题

1.gitlab不能安装到win ,且对centos要求6以上,我只有一台centos5  让运维帮升级 。。。等待。。后来想到云主机时 已经很晚了,并且我已经开始尝试mac上搭建了。。linux上暂时搁置了

2.即使有一台centos6+ ,感觉安装gitlab 未必就顺利了,rpm安装遇到各种问题,包括配置文件的问题,难度系数5颗星(不好解决)

3.考虑到gitlab 不好装,没有mac版,那就先装一个远程git, 在mac上尝试也是各种坑,按照教程来也会有很多不明白的配置内容,ssh服务如何搭建,搭建好了如何测试等等都是坑...

4.mac上算是搞出来一个服务端环境吧,但是掌握的很浅,并不能灵活运用, win上的gitbash居然报错“ssh [email protected]; bad adress” 在mac上是好用的,百了很久也没解决..想着周一到公司找台好用的机器试试..

5.遇到这么多问题忽然想起来其实我把远端库操作熟练掌握了 基本上就达到目的了,至于建远端库其实可以后续再做

6.干,直接github上来试,发现证书要求输密码,我竟然不知道是要让我输哪一个密码,后来发现https方式访问可以用github账户

7.再后来远端操作成功了

localhost:~ robin$ git clone https://github.com/****online/oxgren.git
Cloning into ‘oxgren‘...
remote: Counting objects: 104, done.
remote: Total 104 (delta 0), reused 0 (delta 0), pack-reused 104
Receiving objects: 100% (104/104), 149.05 KiB | 30.00 KiB/s, done.
Resolving deltas: 100% (14/14), done.
Checking connectivity... done.
localhost:~ robin$ ls
Desktop		Downloads	Movies		Pictures	oxgren
Documents	Library		Music		Public
localhost:~ robin$ cd oxgren/
localhost:oxgren robin$ git pull
Already up-to-date.
localhost:oxgren robin$ git push
warning: push.default is unset; its implicit value has changed in
Git 2.0 from ‘matching‘ to ‘simple‘. To squelch this message
and maintain the traditional behavior, 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.

Since Git 2.0, Git defaults 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‘: [email protected]
Password for ‘https://[email protected]@github.com‘:
Everything up-to-date
localhost:oxgren robin$ touch reamde1.txt
localhost:oxgren robin$ open reamde1.txt
localhost:oxgren robin$ git add reamde1.txt
localhost:oxgren robin$ 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:   reamde1.txt

localhost:oxgren robin$ git commit -m"test add readme.txt"
[master ad8eec6] test add readme.txt
 1 file changed, 1 insertion(+)
 create mode 100644 reamde1.txt
localhost:oxgren robin$ git status
On branch master
Your branch is ahead of ‘origin/master‘ by 1 commit.
  (use "git push" to publish your local commits)
nothing to commit, working directory clean
localhost:oxgren robin$ git push
warning: push.default is unset; its implicit value has changed in
Git 2.0 from ‘matching‘ to ‘simple‘. To squelch this message
and maintain the traditional behavior, 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.

Since Git 2.0, Git defaults 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: 3, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 279 bytes | 0 bytes/s, done.
Total 3 (delta 1), reused 0 (delta 0)
To https://github.com/online/oxgren.git
   7b83831..ad8eec6  master -> master
localhost:oxgren robin$

8.再练习三遍 暂时先这么玩着吧,毕竟花了2天的时间来搞了, 上班先搞个gitlab的private库用着吧  有时间再搭建吧

9.好吧 算我傻逼 居然没看到这篇文章  http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00137583770360579bc4b458f044ce7afed3df579123eca000

10.不断的使用linux命令和习惯linx思维,不断的尝试英文阅读理解 ,才能掌握更多的知识,基础很重要,就像要看懂资本论 逻辑学 你就要先理解好大量的系统词语。

时间: 2024-10-07 05:26:35

【git】学习路径失败了的相关文章

git(学习之三)基本操作

Git学习笔记 ##################################################### qq:1218761836 qq群:150181442 E-mail:[email protected] ##################################################### 目录 Git. 2 1.1 初次运行前的配置... 2 1.2 创建版本库... 3 0.3 git提交文件... 4 1.4 检查当前文件状态... 4 1.5

Git 学习笔记&lt;远程仓库与标签管理&gt; (四)

什么是远程仓库? 就像第一章介绍的那样,远程仓库可以储存你编写的所有源码和资源文件. 甚至也可以当网盘使,不过当然有很多契合git管理文本的特性. 下面就要以 github 为示例远程仓库进行介绍.  (也可以自己弄一台服务器作远程仓库). 创建仓库 在主页找到 +New repository 或者右上角的加号里有.输入名字 描述 然后没钱只能public就能确定了.然后呢,点名字打开你的仓库.(主页右下角可以找到) 关于与远程仓库的连接 首先你打开你的保险箱得先证明身份吧,不然我怎么知道你是客

Git 学习笔记

Git 学习笔记 本文整理参考廖雪峰的 Git 教程, 整理 Git 学习笔记, 用于 Git 常用命令速查:常用命令用彩色标注! Git学习笔记 $ git config --global user.name "Your Name" 配置本机所有仓库的用户名 $ git config --global user.email "[email protected]" 配置本机所有仓库的Email地址 $ git init 初始化一个Git仓库 $ ls -ah 查看隐

【转载】前端学习路径

前端学习路径 什么是前端工程师? 总而言之前端工程师就是运用HTML/CSS/JavaScript等Web技术,在工作中配合设计师实现用户界面,和后端工程师进行数据对接,完成Web应用开发的职位. 开发工具 设计软件 前端工程师最首要的任务就是把设计师的设计图切好并翻译成代码,所以我们要学习一些设计软件的基础操作和切图方法. Photoshop 运用最广泛的设计软件,大部分人都在用它,很有必要学习一下 前端工程师必备的PS技能——切图篇 Sketch 轻量且功能强大,切图迅速高效,为UI设计而生

Python之路【第二十四篇】:Python学习路径及练手项目合集

Python学习路径及练手项目合集 Wayne Shi· 2 个月前 参照:https://zhuanlan.zhihu.com/p/23561159 更多文章欢迎关注专栏:学习编程. 本系列Python技术路径中包含入门知识.Python基础.Web框架.基础项目.网络编程.数据与计算.综合项目七个模块.路径中的教程将带你逐步深入,学会如何使用 Python 实现一个博客,桌面词典,微信机器人或网络安全软件等.完成本路径的基础及项目练习,将具备独立的Python开发能力. 完整的Python学

Git学习总结_01_Git使用详细教程

一:Git是什么? Git是目前世界上最先进的分布式版本控制系统. 二:SVN与Git的最主要的区别? SVN是集中式版本控制系统,版本库是集中放在中央服务器的,而干活的时候,用的都是自己的电脑,所以首先要从中央服务器哪里得到最新的版本,然后干活,干完后,需要把自己做完的活推送到中央服务器.集中式版本控制系统是必须联网才能工作,如果在局域网还可以,带宽够大,速度够快,如果在互联网下,如果网速慢的话,就纳闷了. Git是分布式版本控制系统,那么它就没有中央服务器的,每个人的电脑就是一个完整的版本库

git学习——&lt;五&gt;git分支

git学习——<一>git安装 git学习——<二>git配置文件 git学习——<三>git操作 git学习——<四>git版本管理 一.提出问题 今天开发的过程中遇到一个问题,A组接到开发任务要修改file文件,B组在此之前的15天为了完成自己的开发任务对file文件进行了修改,为了同步代码,B组将自己未完成的模块file文件提交到了cvs上.A对此一无所知,A组在完成开发任务后,把file文件完全上到了现网环境,报错了. 当然,避免上述问题的途径很多,

git 学习教程

Git是分布式版本控制系统,那么它就没有中央服务器的,每个人的电脑就是一个完整的版本库,这样,工作的时候就不 需要联网了,因为版本都是在自己的电脑上.既然每个人的电脑都有一个完整的版本库,那多个人如何协作呢?比如说自己在电脑上改了文件A,其他人也在电脑上 改了文件A,这时,你们两之间只需把各自的修改推送给对方,就可以互相看到对方的修改了. 一:Git是什么? Git是目前世界上最先进的分布式版本控制系统. 二:SVN与Git的最主要的区别? SVN是集中式版本控制系统,版本库是集中放在中央服务器

Git 学习总结(一)

前言:之前偶然的机会学习了廖老师关于Git学习的一个网站,讲解的很好很详细,通俗易懂,学习之余决定将廖老师帖子的精髓作一个总结(相当于是笔记啦~~),也方便日后查询巩固,希望大家共勉!查看廖老师详细原帖! 1.安装Git 这里,我只介绍一下在Linux系统下Git的安装,如果需要了解Unix.Mac和Windows几大系统下Git的安装方法,可以自行百度,或者参考本帖开头给出的廖老师的Git学习网站进行查询. (1)通过git命令查看系统是否安装Git,如出现以下情况: $ git The pr