学习笔记之Git / Gitflow / TortoiseGit

Git - Wikipedia

  • https://en.wikipedia.org/wiki/Git
  • Git (/ɡɪt/) is a version control system for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for source code management in software development, but it can be used to keep track of changes in any set of files. As a distributed revision control system it is aimed at speed, data integrity, and support for distributed, non-linear workflows.

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 - 维基百科,自由的百科全书

  • https://zh.wikipedia.org/wiki/TortoiseGit
  • TortoiseGit是一个Git版本控制客户端,作为Microsoft Windows的外壳扩展实现。它在GNU通用公共许可协议下作为自由软件发布。

如何优雅地向别人介绍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/PAF365YSP-EOOlz6AzFkXA

git 操作规范 - 程序猿

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

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

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

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

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

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

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 stash - Saving Changes | Atlassian Git Tutorial

  • https://www.atlassian.com/git/tutorials/saving-changes/git-stash
  • git stash temporarily shelves (or stashes) changes you've made to your working copy so you can work on something else, and then come back and re-apply them later on. Stashing is handy if you need to quickly switch context and work on something else, but you're mid-way through a code change and aren't quite ready to commit.

How to merge feature branch with conflict ?

  • Resolve merge conflicts - Atlassian Documentation
    • https://confluence.atlassian.com/bitbucket/resolve-merge-conflicts-704414003.html
  • Solved: How can I solve a conflict in a pull request?
    • https://community.atlassian.com/t5/Bitbucket-questions/How-can-I-solve-a-conflict-in-a-pull-request/qaq-p/577205

 

转载于:https://www.cnblogs.com/pegasus923/p/8757059.html

你可能感兴趣的:(git,shell,操作系统)