Git - Wikipedia

Gitflow Workflow | Atlassian Git Tutorial

  • https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow
  • Gitflow Workflow is a Git workflow design that was first published and made popular by Vincent Driessen at nvie. The Gitflow Workflow defines a strict branching model designed around the project release. This provides a robust framework for managing larger projects.

Pull Requests and Gitflow

  • https://blog.axosoft.com/pull-requests-gitflow/?utm_campaign=GitKraken%20Promos&utm_medium=email&_hsenc=p2ANqtz--5kZ-hsMZwcIFWuqofU-Oa0iqSOfNS72XNKNaK7CpgtDt6A865oAJYYgDGwDy9KV3_VBTX1DzFJun_PtkOHa1HRm5ptQ&_hsmi=61804615&utm_content=61804282&utm_source=hs_email&hsCtaTracking=61c5ea4a-e8bd-4ffd-bdfa-7de19a1b53e1%7Cfba6e886-1dff-473b-8c6b-f5a02ebef2c2
  • In my previous post, I discussed the Gitflow model and how it helps enterprises manage releases. In this post, I will be discussing pull requests and their importance in the development process.

TortoiseGit – Windows Shell Interface to Git

  • https://tortoisegit.org/
  • TortoiseGit provides overlay icons showing the file status, a powerful context menu for Git and much more!

TortoiseGit - Wikipedia

  • https://en.wikipedia.org/wiki/TortoiseGit
  • TortoiseGit is a Git revision control client, implemented as a Windows shell extension and based on TortoiseSVN. It is free software released under the GNU General Public License.
  • In Windows Explorer, besides showing context menu items for Git commands, TortoiseGit provides icon overlays that indicate the status of Git working trees and files.
  • It also comes with the TortoiseGitMerge utility to visually compare two files and resolve conflicts.

TortoiseGit - 维基百科,自由的百科全书


Learn Git: Merging vs Rebasing

  • https://blog.axosoft.com/learn-git-merging-rebasing/
  • In this quick Git tutorial video, we’ll answer the question, “What’s the difference between merging and rebasing in Git?”

Git Diff | Atlassian Git Tutorial

  • https://www.atlassian.com/git/tutorials/saving-changes/git-diff

如何优雅地向别人介绍高端大气上档次的Git - 机器之心

  • https://mp.weixin.qq.com/s/79Aug3YQzS5-IuJlg46ukg
  • 本文主题是如何向工具初学者介绍分布式版本控制系统 Git。除了了解关于 Git 的基本知识以外,大家还可以学到一些工具学习方面的东西。
  • https://rachelcarmena.github.io/2018/12/12/how-to-teach-git.html

一篇文章,教你学会Git

  • https://mp.weixin.qq.com/s/O93vtQEAc3ULwHSuyU8RzA
  • https://www.jianshu.com/p/072587b47515
  • 一、Git工作流程
  • 二、常用Git命令

Git入门

  • https://mp.weixin.qq.com/s/kreK2FlQ31VP2303FbpQzQ
  • 版本控制介绍

    • 什么是版本控制

    • 为什么要版本控制

    • 本地版本控制系统

    • 集中化的版本控制系统

    • 分布式版本控制系统

  • 认识 Git
    • Git 简史
    • Git 与其他版本管理系统的主要区别
    • Git 的三种状态
  • Git 使用快速入门
    • 获取 Git 仓库
    • 记录每次更新到仓库
    • 推送改动到远程仓库
    • 远程仓库的移除与重命名
    • 查看提交历史
    • 撤销操作
    • 分支
  • 推荐阅读

20 分钟教你搞懂 Git!- 机器学习算法与Python学习

  • https://mp.weixin.qq.com/s/pyThc93faTz0N1gmHybFxw
  • 1. 初始化
  • 2. 保存对象
  • 3. 更新索引
  • 4. git add命令
  • 5. 提交(Commit)
  • 6. 完成提交
  • 7. git commit命令
  • 8. 分支(branch)
  • 9. 更新分支

git 操作规范 - 程序猿

  • https://mp.weixin.qq.com/s/gshJ7HeHVCnUjTssJYeSSw
  • https://segmentfault.com/a/1190000014461898
  • 一、 创建与合并分支
  • 二、 解决冲突
  • 三、Bug分支
  • 四、版本回退
  • 五、撤销修改
  • 六、对于已经push的版本,进行回退
  • 七、本地同步远程删除的分支
  • 八、删除掉没有与远程分支对应的本地分支
  • 九、查看远程库的一些信息,及与本地分支的信息
  • 十、git stash临时保存本地操作

Git 12 岁了,为你送上 12 个 Git 的使用技巧! - Linux学习

  • https://mp.weixin.qq.com/s/JZGmwYGp9ZGjYJfTu7SVJQ
  • https://www.oschina.net/translate/12-git-tips-gits-12th-birthday
  • 1. 你的 ~/.gitconfig 文件
  • 2. 你的仓库的.gitconfig文件
  • 3、别名
  • 4. shell命令中的别名
  • 5. 可视化提交图
  • 6. 更优雅的强制推送(force-push)
  • 7. git add -N
  • 8. git add -p
  • 9. git checkout -p
  • 10. Rebase with command execution
  • 11. 基于时间修改的指南
  • 12. 全知的 reflog

你可能会忽略的 Git 提交规范 - Linux学习

  • https://mp.weixin.qq.com/s/alHVVwRQ1Cu9vb3vOqSNgQ
  • http://jartto.wang/2018/07/08/git-commit/

​你可能不太会用的10个Git命令 - 机器之心

  • https://mp.weixin.qq.com/s/2K8coqrcCajUtzx67jlZYg

学习笔记之Git / Gitflow / TortoiseGit的更多相关文章

  1. git的学习笔记(二):git远程操作

    1.创建ssh key ssh-keygen -t rsa -C "your_email@example.com" 执行命令后会在用户的家目录生成.ssh的隐藏文件夹,文件夹里有公 ...

  2. Git学习系列之Git和TortoiseGit的区别

    不多说,直接上干货! Git和TortoiseGit的区别: TortoiseGit的安装和使用依赖Git. Git有且只有一个,就是linux最初创建的那个叫做Git的程序.现在的维护者的名字我懒得 ...

  3. TortoiseGit学习系列之Git和TortoiseGit的区别

    不多说,直接上干货! Git和TortoiseGit的区别: TortoiseGit的安装和使用依赖Git.

  4. 【学习笔记】Git的日常使用

    Note:本笔记是我学习廖雪峰老师的Git教程整理得到,在此向廖老师的无私付出表示衷心的感谢! 0.Git的历史 Git是一个分布式的版本控制系统(C语言编写,一开始为Linux社区服务,替代BitK ...

  5. Git学习:利用Git和TortoiseGit把代码传输到网络服务器

    版本控制这块,一直用SVN.感觉挺好用,比VSS要好用些.不过,近期在网上,又谈到时下很流行的Git.就想看看Git到底是何方神圣.趁着五一在家无事,就静下心来,简单研究一下. 当下,网络上提供的基于 ...

  6. Git学习笔记:Git基础

    一.Git与其他版本控制系统的差别 Git 只关心文件数据的整体是否发生变化,而大多数其他系统则只关心文件内容的具体差异.这类系统每次记录有哪些文件作了更新,以及都更新了哪些行的什么内容.如下图,其他 ...

  7. git的学习笔记(一):git本地操作

    1.Git介绍 Git是一个开源的分布式版本控制软件,用以有效.高速的处理从很小到非常大的项目版本管理. Git 最初是由Linus Torvalds设计开发的,用于管理Linux内核开发. Git ...

  8. Git 学习笔记--1.Git基础操作

    取得项目的Git仓库 有两种方式取得Git项目仓库.第一种是在现存的目录下,通过导入所有文件来创建新的Git仓库.第二种是从已有的Git仓库克隆出一个新的镜像仓库. 在工作目录中初始化新仓库  要对现 ...

  9. Git学习笔记3 git revert

    我们难免会因为种种原因执行一些错误的commit / push,git提供了revert命令帮助程序员修复这样的错误. 举个例子,下图是git commit 的历史记录 git revert 命令会通 ...

随机推荐

  1. ODOO v10.0 自动生成财务凭证的科目设置

    ODOO v10.0 自动生成财务凭证的科目设置 可以在产品类别及产品档案里设置,建议在产品类别下设置,方便维护. 项目 设置为(具体科目以公司科目表为主) 对应作用业务 Income Account ...

  2. 铁三测试题——权限、你是管理员吗?——WP

    权限 [题目描述]:你是管理员吗? [解题链接]:http://ctf4.shiyanbar.com/web/root/index.php 首先看题,提到“权限”,“管理员”,这就是说涉及到管理员的账 ...

  3. [ZOJ 4062][2018ICPC青岛站][Plants vs. Zombies]

    http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4062 题目大意:给一个大小为n的数组,数组编号从1到n,每一个元素的值代表 ...

  4. LeetCode – Group Shifted Strings

    Given a string, we can "shift" each of its letter to its successive letter, for example: & ...

  5. PowerDesigner基础使用 ---- 入门学习

    1:入门级使用PowerDesigner软件创建数据库(直接上图怎么创建,其他的概念知识可自行学习) 我的PowerDesigner版本是16.5的,如若版本不一样,请自行参考学习即可.(打开软件即是 ...

  6. 深入详解美团点评CAT跨语言服务监控(四)服务端消息分发

    这边首先介绍下大众点评CAT消息分发大概的架构如下: 图4 消息分发架构图 分析管理器的初始化 我们在第一章讲到服务器将接收到的消息交给解码器(MessageDecoder)去做解码最后交给具体的消费 ...

  7. Python time & datetime模块

    time 模块 时间分为三种格式: 时间戳:表示1970年1月1日之后的秒 结构化时间:元组包含了:年.日.星期等... 格式化字符串:格式可以自定义 时间戳: import time time_st ...

  8. 开发 FastAdmin 时见识到 php opcache 厉害

    开发 FastAdmin 时见识到 php opcache 厉害 FastAdmin 的插件配置是写在 config.php 中的. 我在修改配置时发现加了空格,然后再重新打开配置页发现空格没有配置面 ...

  9. vscode vue eslint 快捷键格式化代码

    添加vetur , eslint插件   在工作区添加以下代码   "workbench.startupEditor": "welcomePage", &quo ...

  10. AES 加解密 Java实现

    package com.smt.cipher.symmetry; import java.nio.charset.Charset; import java.security.SecureRandom; ...