陈土豆@home:~$

  • 兄弟会-第四天--操作远程库

    远程库与本地库交互 克隆远程库到本地 - git init 初始化 git clone +远程库的地址 完成克隆 本地信息提交到远程库 完成一次交互 git remote -v 查看连接信息 git remote origin +远程库地址 git remote -v 再次检查 git pull origin master 提交之前最好拉取一下 git push origin master 提交 git remote rm origin 删除连接 查看分支:git branch ​ 创建分支:git branch <name> ​ 切换分支:git checkout <name> ​...

  • 兄弟会--第三天--markdown

    Text can be bold, italic, strikethrough or keyword. Link to another page. There should be whitespace between paragraphs. There should be whitespace between paragraphs. We recommend including a README, or a file with information about your project. 一级标题 This is a normal paragraph following a header. GitHub is a code...

  • 兄弟会-- 第二天--git常用命令

    第二天–找资料学习git . 是一个开源的分布式版本控制系统,可以有效、高速地处理从很小到非常大的项目版本管理,Git 是 Linus Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。 通过git 语言 写了一个自己的博客,以下是总结的一些语句 git init #初始化 in read.txt #创建一个文件 i “hello world” #编辑 Esc+:x #保存退出 git add read.txt #把文件加到仓库 git commit -m “wrote a read flie “ #提交到仓库 更新: vi read.txt #进入文件 “hello hello 再来一个hello world”#编辑 Esc+:x #退出 git status #查看文件状态...