git 代理 git_如何成为Git专家

git 代理 git

I made a mistake in my commit, how do I fix it ?

我在提交中犯了一个错误,该如何解决?

My commit history is a mess, how do I make it neater?

我的提交历史是一团糟,我如何使其更整洁?

If you have ever had the above questions, then this post is for you. This post covers a list of topics which will make you a Git expert.

如果您曾经遇到上述问题,那么这篇文章适合您。 这篇文章涵盖了一个主题列表,这些主题将使您成为Git专家。

If you do not know Git basics, click here to check out my blog on Git basics. It is necessary that you know basics of Git to make the best use of this article.

如果您不了解Git基础知识, 请单击此处查看有关Git基础知识的博客。 为了充分利用本文,有必要了解Git的基础知识。

我犯了一个错误。 我该怎么办? (I made a mistake in my commit. What should I do?)

场景1 (Scenario 1)

Let’s say that you have committed a bunch of files and realised that the commit message you entered is actually not clear. Now you want to change the commit message. In order to do this you can use git commit --amend

假设您已经提交了一堆文件,并且意识到您输入的提交消息实际上并不清晰。 现在您要更改提交消息。 为此,您可以使用git commit --amend

git commit --amend -m "New commit message"

方案2 (Scenario 2)

Let’s say that you wanted to commit six files but, by mistake, you end up committing only five files. You may think that you can create a new commit and add the 6th file to that commit.

假设您要提交六个文件,但是由于错误,您最终只能提交五个文件。 您可能认为您可以创建一个新的提交并将第六个文件添加到该提交中。

There is nothing wrong with this approach. But, to maintain a neat commit history, wouldn’t it be nicer if you could actually somehow add this file to your previous commit itself? This can be done through git commit --amend as well:

这种方法没有错。 但是,为了保持简洁的提交历史记录,如果您实际上可以以某种方式将此文件添加到以前的提交本身中,会不会更好? 这也可以通过git commit --amend来完成:

git add file6
git commit --amend --no-edit

--no-edit means that the commit message does not change.

--no-edit表示提交消息不会更改。

场景3 (Scenario 3)

Whenever you do a commit in Git, the commit has an author name and author email tied to it. Generally, when you set up Git for the first time, you set up the author name and email. You don’t need to worry about the author details for every commit.

每当您在Git中进行提交时,该提交都会带有作者姓名和作者电子邮件。 通常,首次设置Git时,需要设置作者姓名和电子邮件。 您无需担心每次提交的作者详细信息。

That said, it’s possible that for a particular project you want to use a different email ID. You need to configure the email id for that project with the command:

也就是说,对于特定项目,您可能想要使用其他电子邮件ID。 您需要使用以下命令为该项目配置电子邮件ID:

git config user.email "your email id"

Let’s say that you forgot to configure the email and already did your first commit. Amend can be used to change the author of your previous commit as well. The author of the commit can be changed using the following command:

假设您忘记配置电子邮件,并且已经进行了第一次提交。 Amend也可以用于更改您先前提交的作者。 可以使用以下命令来更改提交的作者:

git commit --amend --author "Author Name <Author Email>"

注意事项 (Point to note)

Use the amend command only in your local repository. Using amend for the remote repository can create a lot of confusion.

在本地存储库中使用amend命令。 对远程存储库使用amend可能会造成很多混乱。

我的提交历史是一团糟。 我该如何处理? (My Commit history is a mess. How do I handle it?)

Let’s say that you are working on a piece of code. You know that the code is going to take approximately ten days to complete. Within those ten days, the other developers will also be committing code to the remote repository.

假设您正在编写一段代码。 您知道该代码大约需要十天才能完成。 在这十天内,其他开发人员还将把代码提交到远程存储库。

It is a good practise to keep your local repository code up-to-date with the code in the remote repository. This avoids a lot of merge conflicts later when you raise a pull request. So you decide that you will pull the changes from the remote repository once every two days.

这是一个很好的做法 ,让您的本地仓库代码上最新与远程存储库中的代码。 这样可以避免以后引发拉取请求时发生很多合并冲突。 因此,您决定每两天从远程存储库中提取一次更改。

Every time you pull the code from the remote repository to the local repository a new merge commit is created in your local repository. This means that your local commit history is going to have a lot of merge commits which can make things look confusing to the reviewer.

每次将代码从远程存储库拉到本地存储库时,都会在本地存储库中创建一个新的合并提交。 这意味着您的本地提交历史记录将包含很多合并提交,这会使审阅者感到困惑。

您如何使提交历史看起来更整洁? (How do you make the commit history look neater?)

This is where rebase comes to the rescue.

这是底垫就派上用场了。

什么是变基? (What is rebasing?)

Let me explain this through an example.

让我通过一个例子对此进行解释。

  1. The Release branch has three commits: Rcommit1, Rcommit2, and Rcommit3.

    Release分支具有三个提交:Rcommit1,Rcommit2和Rcommit3。
  2. You created your Feature branch from the Release branch when it had only one commit, which is Rcommit1.

    在只有一个提交(即Rcommit1)的情况下,您从Release分支创建了Feature分支。
  3. You have added two commits to the Feature branch. They are Fcommit1 and Fcommit2.

    您已向Feature分支添加了两个提交。 它们是Fcommit1和Fcommit2。
  4. Your goal is to get the commits from the Release branch into your Feature branch.

    您的目标是使发布从Release分支到Feature分支。
  5. You are going to use rebase to do this.

    您将使用rebase来执行此操作。
  6. Let the name of the Release branch be release and the name of the Feature branch be feature.

    假设Release分支的名称为release ,而Feature分支的名称为feature

  7. Rebasing can be done using the following commands:

    可以使用以下命令来完成基础调整:
git checkout feature
git rebase release

变基 (Rebasing)

While rebasing, your goal is to ensure the Feature branch gets the latest code from the Release branch.

在重新定基时,您的目标是确保Feature分支从Release分支获取最新代码。

Rebasing tries to add each commit, one by one, and checks for conflicts. Does that sound confusing?

变基尝试逐个添加每个提交,并检查是否存在冲突。 这听起来令人困惑吗?

Let me explain with the help of a diagram.

让我借助图表进行说明。

This shows what rebasing actually does internally:

这显示了变基在内部实际执行的操作:

第1步 (Step 1)

  1. The moment you run the command, the Feature branch is pointed to the head of Release branch.

    运行命令后,Feature分支便指向Release分支的头部。
  2. Now the Feature branch has three commits: Rcommit1, Rcommit2, and Rcommit3.

    现在,Feature分支具有三个提交:Rcommit1,Rcommit2和Rcommit3。
  3. You may be wondering what happened to Fcommit1 and Fcommit2.

    您可能想知道Fcommit1和Fcommit2发生了什么。
  4. The commits are still there and will be used in the steps below.

    提交仍然存在,将在以下步骤中使用。

第2步 (Step 2)

  1. Now Git tries to add Fcommit1 to the Feature branch.

    现在,Git尝试将Fcommit1添加到Feature分支。
  2. If there is no conflict Fcommit1 is added after Rcommit3

    如果没有冲突,则在Rcommit3之后添加Fcommit1
  3. If there is a conflict, Git will notify you, and you will have to resolve the conflict manually. After the conflict is resolved use the following commands to continue rebasing

    如果存在冲突,Git将通知您,您将必须手动解决冲突。 解决冲突后,使用以下命令继续进行基础调整
git add fixedfile
git rebase --continue

第三步 (Step 3)

  1. Once Fcommit1 is added, Git will try to add Fcommit2.

    添加Fcommit1后,Git将尝试添加Fcommit2。
  2. Again, if there is no conflict Fcommit2 is added after Fcommit1 and the rebase is successful.

    同样,如果不存在冲突,则在Fcommit1之后添加Fcommit2,并且成功进行重新设置基准。
  3. If there is a conflict, Git will notify you, and you will have to resolve it manually. Use the same commands mentioned in Step 2 after resolving conflicts

    如果有冲突,Git将通知您,您必须手动解决它。 解决冲突后,请使用步骤2中提到的相同命令
  4. After the entire rebase is done, you will notice that the Feature branch has Rcommit1, Rcommit2, Rcommit3 , Fcommit1, and Fcommit2.

    完成整个基准后,您将注意到Feature分支具有Rcommit1,Rcommit2,Rcommit3,Fcommit1和Fcommit2。

注意事项 (Points to note)

  1. Both Rebase and Merge are useful in Git. One is not better than the other.

    Rebase和Merge在Git中都非常有用。 一个并不比另一个更好。
  2. In the case of a merge you will have a merge commit. In the case of a rebase there is no extra commit like a merge commit.

    在合并的情况下,您将有一个合并提交。 在进行rebase的情况下,没有像合并提交这样的额外提交。
  3. One best practise is to use the commands at different points. Use rebase when you are updating your local code repository with the latest code from the remote repository. Use merge when you are dealing with pull requests to merge the Feature branch back with the Release or Master branch.

    一种最佳实践是在不同位置使用命令。 使用远程存储库中的最新代码更新本地代码存储库时,请使用rebase。 处理合并请求时,请使用合并将Feature分支与Release或Master分支合并。
  4. Using Rebase alters the commit history ( it makes it neater) . But that being said, altering the commit history has it’s risks. So ensure you never use rebase on a code that is there in the remote repository. Always use rebase only to alter the commit history of your local repo code.

    使用Rebase会更改提交历史记录(使其更整洁)。 话虽这么说,改变提交历史还是有风险的。 因此,请确保永远不要在远程存储库中的代码上使用rebase。 始终仅使用rebase来更改本地存储库代码的提交历史记录。
  5. If rebase is done to a remote repository it can create a lot of confusion since other developers will not recognise the new history.

    如果对远程存储库进行了基础更改,则可能会造成很多混乱,因为其他开发人员将无法识别新的历史记录。
  6. Also if rebase is done on the remote repository, it can create issues when other developers try to pull the latest code from remote repository. So I repeat again, always use rebase only for the local repository ?

    同样,如果在远程存储库上完成了重新设置基准,则当其他开发人员尝试从远程存储库中获取最新代码时,它也会造成问题。 所以我再说一遍,总是只对本地存储库使用rebase吗?

恭喜😊 (Congrats 😊)

You are now a Git expert ?

您现在是Git专家?

In this post you have learnt about:

在这篇文章中,您了解了:

  • amending commits

    修改提交
  • rebase

    重新设定

Both of these are very useful concepts. Go explore the world of Git to learn even more.

这两个都是非常有用的概念。 去探索Git的世界以了解更多。

关于作者 (About the author)

I love technology and follow the advancements in the field. I also like helping others with my technology knowledge.

我热爱技术,并关注该领域的进步。 我也喜欢用我的技术知识来帮助他人。

Feel free to connect with me on my LinkedIn account https://www.linkedin.com/in/aditya1811/

随时使用我的LinkedIn帐户与我联系https://www.linkedin.com/in/aditya1811/

You can also follow me on twitter https://twitter.com/adityasridhar18

您也可以在Twitter上关注我https://twitter.com/adityasridhar18

My Website: https://adityasridhar.com/

我的网站: https : //adityasridhar.com/

Best Practises while using Git

使用Git时的最佳做法

An introduction to Git

Git简介

How to use Git efficiently

如何有效使用Git

翻译自: https://www.freecodecamp.org/news/how-to-become-a-git-expert-e7c38bf54826/

git 代理 git

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392843.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

101与金根回顾敏捷个人:(13)敏捷个人和敏捷开发

本文更新版本已挪至 http://www.zhoujingen.cn/blog/1726.html ------------------------- 敏捷个人源于工作 自2001初成立了敏捷联盟到现在10年的推广&#xff0c;敏捷开发已日渐成为当前IT行业软件开发的一种主流方法。没有银弹&#xff0c;任何方法都不可能解决所有问题&a…

计算机网络选择重传,计算机网络选择重传协议实验报告..docx

计算机网络选择重传协议实验报告.《计算机网络》选择重传协议实验报告1.实验内容和实验环境描述实验内容&#xff1a;利用所学数据链路层原理&#xff0c;设计一个滑动窗口协议&#xff0c;在仿真环境下编程实现有噪音信道环境下两站点之间无差错双工通信。信道模型为8000bps 全…

leetcode 剑指 Offer 03. 数组中重复的数字

找出数组中重复的数字。 在一个长度为 n 的数组 nums 里的所有数字都在 0&#xff5e;n-1 的范围内。数组中某些数字是重复的&#xff0c;但不知道有几个数字重复了&#xff0c;也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。 示例 1&#xff1a; 输入&…

【Maven学习】Maven打包生成包含所有依赖的jar包

http://blog.csdn.net/u013177446/article/details/54134583 ************************************************** maven打包生成的普通jar包&#xff0c;只包含该工程下源码编译结果&#xff0c;不包含依赖内容。同时&#xff0c;maven提供以下方式生成包含所有依赖的jar文件…

mysql 数据库 安全_如何确保您MySQL数据库安全

mysql 数据库 安全我们开始之前的一些基本信息&#xff1a; (Some basic information before we get started:) Source: Center for Internet Security’s (CIS) Oracle MySQL Community Server 5.7来源&#xff1a; 互联网安全中心(CIS)Oracle MySQL Community Server 5.7 Op…

Exchange server 2010系列教程之三 发送邮件测试

最近有些忙&#xff0c;好几天没有上来写教程了&#xff0c;接着往下写吧。就当是自己的学习笔记&#xff0c;呵呵&#xff0c;有不到之处&#xff0c;还请大家多多指教。 上一篇我们已经把服务器架设好了&#xff0c;那么我们来测试一下发送邮件。 1.首先在AD DC上面新建一个域…

如何用计算机扫描图片变成文字,怎么扫描图片上的文字-华为手机黑科技"文字扫描仪",3秒就能将纸质文档转成电子档,牛...

现如今&#xff0c;手机已经成为我们使用率最高的电子设备之一了。手机虽小&#xff0c;但是功能可是五花八门&#xff0c;很多手机的功能&#xff0c;可能我们使用几年&#xff0c;都没有发现过。今天就给大家介绍华为手机中&#xff0c;非常强大的一项黑科技“文字扫描仪”。…

第一步:编辑器选择

对于c/c的学习已经进一年的时间了&#xff0c;现在想开始好好换一个文本编辑器&#xff0c;然后慢慢的学习&#xff0c;随着时间的增加而不断增加。两款颇有争议的软件是Vim和emacs&#xff0c;两者之间的选择其实对于初学者的我还是比较困难的&#xff0c;Vim在原来有点接触过…

leetcode116. 填充每个节点的下一个右侧节点指针(dfs)

代码 /* // Definition for a Node. class Node {public int val;public Node left;public Node right;public Node next;public Node() {}public Node(int _val) {val _val;}public Node(int _val, Node _left, Node _right, Node _next) {val _val;left _left;right _ri…

react销毁方法钩子0_React钩子:使用React状态的新方法

react销毁方法钩子0Updated: With React 16.8, React Hooks are available in a stable release!更新&#xff1a;随着React 16.8的发布&#xff0c; React Hooks已经发布&#xff01; Outdated: Hooks are still an experimental proposal. They’re currently in React v16.…

Linux下安全审计工具 lynis 使用说明

官网&#xff1a;https://cisofy.com/download/lynis/ 下载解压后&#xff0c;执行./lynis -Q即可&#xff0c;稍等片刻自动生成一份检测报告。可以根据检测报告看哪里不足进行改进即可。 本文转自 lirulei90 51CTO博客&#xff0c;原文链接&#xff1a;http://blog.51cto.com/…

课堂训练

1.对于可能的变更是否能制定应急计划&#xff1f; 可以制定 例如一款app的开发&#xff0c;在制作app之前会对app的功能性进行一个规划&#xff0c;想的比较全面就能很好应对变更。 2.员工是否能够有效地处理意料之外的工作请求&#xff1f; 能够处理 对于工作能力极强的员工而…

Google 实用搜索技巧

孔子曰&#xff1a;“工欲善其事&#xff0c;必先利其器。居是邦也&#xff0c;是其大夫之贤者&#xff0c;友其示支仁者。”——语出《论语卫灵公》 1. Google搜索固定格式的文档 Google支持特定格式文档的搜索&#xff08;“filetype:”就是它的搜索语法&#xff09;&#xf…

华科的计算机和建筑学哪个强,华中科技大学和华南理工大学相比,谁更占优势?看了也许就知道了...

大学是学生接受教育的过程中非常重要的一个阶段&#xff0c;很多学生都会尽可能在高考中&#xff0c;考出更好的成绩&#xff0c;争取报考一个更好的大学。为了提升教育水平&#xff0c;我国到目前为止建设了超过3000所大学&#xff0c;其中有很多高等院校非常相似&#xff0c;…

c#+handle.exe实现升级程序在运行时自动解除文件被占用的问题

我公司最近升级程序经常报出更新失败问题&#xff0c;究其原因&#xff0c;原来是更新时&#xff0c;他们可能又打开了正在被更新的文件&#xff0c;导致更新文件时&#xff0c;文件被其它进程占用&#xff0c;无法正常更新而报错&#xff0c;为了解决这个问题&#xff0c;我花…

播客#50:Sacha Greif

On todays episode of the freeCodeCamp Podcast, Quincy Larson interviews Sacha Greif, a designer, developer, and prolific open source project creator.在今天的免费CodeCamp播客中&#xff0c;昆西拉尔森(Quincy Larson)采访了设计师&#xff0c;开发人员和多产的开源…

leetcode 977. 有序数组的平方(双指针)

给定一个按非递减顺序排序的整数数组 A&#xff0c;返回每个数字的平方组成的新数组&#xff0c;要求也按非递减顺序排序。 示例 1&#xff1a; 输入&#xff1a;[-4,-1,0,3,10] 输出&#xff1a;[0,1,9,16,100] 示例 2&#xff1a; 输入&#xff1a;[-7,-3,2,3,11] 输出&am…

Spring.net的一个小例子

入门级的Spring.net的例子&#xff0c;比Spring.net带的例子还要简单。容易上手。下载地址&#xff1a;http://files.cnblogs.com/elevenWolf/SpringTest.rar转载于:https://www.cnblogs.com/martinxj/archive/2005/07/18/195105.html

使用JavaScript的Platformer游戏教程

Learn how to create a platformer game using vanilla JavaScript.了解如何使用香草JavaScript创建平台游戏。 This tutorial starts with teaching how to organize the code using the Model, View, Controller (MVC) strategy and the principles of Object Oriented Prog…

leetcode 52. N皇后 II(回溯)

n 皇后问题研究的是如何将 n 个皇后放置在 nn 的棋盘上&#xff0c;并且使皇后彼此之间不能相互攻击。 给定一个整数 n&#xff0c;返回 n 皇后不同的解决方案的数量。 示例: 输入: 4 输出: 2 解释: 4 皇后问题存在如下两个不同的解法。 [ [".Q…", // 解法 1 “……