vue项目示例代码git_您应该了解的5个Git命令以及代码示例

vue项目示例代码git

I've used Git for some years now, and I still find myself googling how to do some basic tasks. So this article is my attempt to learn how to do some of these things by writing about them. And even if I still forget, at least I'll have a reference where I can easily find these commands – and you will, too.

我已经使用Git几年了,但我仍然发现自己在搜寻如何执行一些基本任务。 因此,本文是我尝试通过撰写文章来学习如何做这些事情的尝试。 即使我仍然忘记了,至少我会有一个参考,在这里我可以轻松找到这些命令,您也将找到。

Before we move on to learn these things, something a colleague of mine once said has stuck with me. He told me that everything is possible with Git and that nothing is lost in Git.

在我们继续学习这些东西之前,我的一位同事曾经说过一句话。 他告诉我,Git可以实现一切,而Git不会丢失任何东西。

I don't know if the former part of his statement is entirely true but I keep it in mind every time I try to do something with Git. I believe that I'm going to find a command that will help me do what I need to do. I just have to google with the right words. If you are new to Git, I want you to believe that, too.

我不知道他声明的前一部分是否完全正确,但是每次我尝试对Git进行操作时,我都会牢记这一点。 我相信我将找到一条命令,该命令将帮助我完成需要做的事情。 我只需要用正确的词来谷歌搜索。 如果您是Git的新手,我也希望您也相信这一点。

In this article, we'll learn how to do the following:

在本文中,我们将学习如何执行以下操作:

  1. Add remote repositories

    添加远程存储库
  2. Change remote repositories

    更改远程存储库
  3. Delete a branch

    删除分支
  4. Merge a file from one branch to another

    将文件从一个分支合并到另一个分支
  5. Undo a commit locally and remotely

    本地和远程撤消提交

Though this article is intended for people with a basic knowledge of Git, I'll do my best to explain terms as much as possible.

尽管本文是为具有Git基础知识的人准备的,但我会尽力解释尽可能多的术语。

1.添加远程存储库 (1. Add Remote Repositories)

Remote repositories are versions of your projects that are stored on the internet or elsewhere. Adding a remote repository is a way of telling Git where your code is stored.

远程存储库是存储在Internet或其他地方的项目的版本。 添加远程存储库是一种告诉Git代码存储在哪里的方法。

We can do this using the URL of the repository. This could be the URL of your repository, another user's fork, or even a completely different server.

我们可以使用存储库的URL进行此操作。 这可能是您的存储库的URL,另一个用户的fork甚至是完全不同的服务器。

When you clone a repository, Git implicitly adds that repository as the origin remote for you. To add a new Git repository, you use this command:

克隆存储库时,Git隐式将该存储库添加为您的origin远程站点。 要添加新的Git存储库,请使用以下命令:

git remote add <shortname> <url>

where shortname is a unique remote name and url is the url of the repository you want to add.

其中shortname是唯一的远程名称,而url是要添加的存储库的url。

For example, if I want to add a repository with the shortname upstream, I can do this:

例如,如果我想添加一个短名称为upstream的存储库,则可以这样做:

git remote add upstream https://github.com/sarahchima/personal-website.git

Remember that your shortname can be anything, it just has to be unique, that is different from what the names of the remote repositories you already have. It should also be something you can easily remember for your sanity.

请记住,您的shortname可以是任何东西,它必须唯一,这与您已有的远程存储库的名称不同。 您也应该为自己的理智而轻易记住它。

To view the list of remote URLs you have added, run the following command:

要查看已添加的远程URL列表,请运行以下命令:

git remote -v

You'll see a list of the remote names and the URLs you have added.

您将看到一个远程名称和添加的URL的列表。

But what if you want to change these remote URLs? Let's move to the next Git command.

但是,如果您想更改这些远程URL怎么办? 让我们转到下一个Git命令。

2.更改远程存储库 (2. Change remote repositories)

There are several reasons why you may want to change a remote URL. For example, I recently had to move from using https URLs to SSH URLs for a project I worked on.

您可能要更改远程URL的原因有多种。 例如,最近我不得不从使用https URL转到我从事的项目的SSH URL。

To do this, you use the following command:

为此,请使用以下命令:

git remote set-url <an-existing-remote-name> <url>

For this command to work, the remote name has to be an existing remote name. That means it won't work if you've not added that remote name before.

为了使此命令起作用,远程名称必须是现有的远程名称。 这意味着如果您之前未添加该远程名称,它将无法正常工作。

Using the example above, if I want to change the remote URL, I'll do this:

使用上面的示例,如果要更改远程URL,将执行以下操作:

git remote set-url upstream git@github.com:sarahchima/personal-website.git

Remember to run git remote -v to verify that your change worked.

请记住运行git remote -v来验证您的更改是否有效。

Enough about remote repositories. Let's move on to something different.

足够用于远程存储库。 让我们继续一些不同的事情。

3.在本地和远程删除分支 (3. Delete a branch both locally and remotely)

A branch is a version of the repository that is different from the main working project. You may want to read up on Git branches and how to add a branch if you are not familiar with that process.

分支是存储库的版本,与主要工作项目不同。 如果您不熟悉该过程,则可能需要阅读有关Git分支以及如何添加分支的信息。

如何删除本地分支 (How to delete a local branch)

To delete a branch locally, make sure you are not on the branch you want to delete. So you have to checkout to a different branch and use the following command:

要在本地删除分支,请确保您不在要删除的分支上。 因此,您必须签出到其他分支并使用以下命令:

git branch -d <name-of-branch>

So if I want to delete a branch named fix/homepage-changes, I'll do the following:

因此,如果要删除一个名为fix/homepage-changes的分支,将执行以下操作:

git branch -d fix/homepage-changes

You can run git branch on your terminal to confirm that the branch has been successfully removed.

您可以在终端上运行git branch ,以确认该分支已成功删除。

Sometimes you may have to delete a branch you've already pushed to a remote repository. How can you do this?

有时,您可能必须删除已经推送到远程存储库的分支。 你该怎么做?

如何删除远程分支 (How to delete a remote branch)

To delete a branch remotely, you use the following command:

要远程删除分支,请使用以下命令:

git push <remote-name> --delete <name-of-branch>

where remote-name is the name of the remote repository you want to delete the branch from.

其中remote-name是要从中删除分支的远程存储库的名称。

If I want to delete the branch fix/homepage-changes from origin, I'll do this:

如果我想从origin删除分支fix/homepage-changes ,我将执行以下操作:

git push origin --delete fix/homepage-changes

The branch will be deleted remotely now.

现在该分支将被远程删除。

4.将文件从一个分支合并到另一个分支 (4. Merge a file from one branch to another)

Sometimes, you may want to merge the content of a specific file in one branch into another. For example, you want to merge the content of a file index.html in the master branch of a project into the development branch. How can you do that?

有时,您可能希望将一个分支中特定文件的内容合并到另一个分支中。 例如,您要将项目的master分支中的index.html文件的内容合并到development分支中。 你该怎么做?

First, checkout to the right branch (the branch you want to merge the file) if you've not already done so. In our case, it's the development branch.

首先,签出到右分支(要合并文件的分支)(如果尚未这样做)。 在我们的案例中,它是development部门。

git checkout development

Then merge the file using the checkout --patch command.

然后使用checkout --patch命令合并文件。

git checkout --patch master index.html

If you want to completely overwrite the index.html file on the development branch with the one on the master branch, you leave out the --patch flag.

如果要用master分支上的文件完全覆盖development分支上的index.html文件,则可以--patch标志。

git checkout master index.html

Also, leave out the --patch flag if the index.html file does not exist on the development branch.

另外,如果在development分支上不存在index.html文件,则--patch标志。

5.撤消提交 (5. Undo a commit)

There are times when you've committed your changes incorrectly and you want to undo this commit. Sometimes, you may have even pushed the changes to a remote branch. How do you undo or delete this commit? Let's start with undoing a local commit.

有时候,您错误地提交了更改,而您想撤消此提交。 有时,您甚至可能将更改推送到远程分支。 您如何撤消或删除此提交? 让我们从撤消本地提交开始。

如何撤消本地提交 (How to undo a local commit)

One way you can undo a commit locally is by using git reset. For example, if you want to undo the last commit made, you can run this command:

您可以在本地撤消提交的一种方法是使用git reset 。 例如,如果要撤消上一次提交的操作,可以运行以下命令:

git reset --soft HEAD~1

The --soft flag preserves the changes you've made to the files you committed, only the commit is reverted. However, if you don't want to keep the changes made to the files, you can use the --hard flag instead like this:

--soft标志保留您对提交的文件所做的更改,仅还原提交。 但是,如果您不想保留对文件所做的更改,则可以使用--hard标志,如下所示:

git reset --hard HEAD~1

Note that you should use the --hard flag only when you are sure that you don't need the changes.

请注意,仅当确定不需要更改时,才应使用--hard标志。

Also, note that HEAD~1 points to the last commit. If you want to undo a commit before that, you can use git reflog to get a log of all previous commits. Then use the git reset command with the commit hash (the number you get at the beginning of each line of history). For example, if my commit hash is 9157b6910, I'll do this

另外,请注意HEAD~1指向最后一次提交。 如果您想在此之前撤消提交,则可以使用git reflog获取所有先前提交的日志。 然后将git reset命令与提交哈希(在历史记录的每一行开头获得的数字)一起使用。 例如,如果我的提交哈希为9157b6910 ,我将这样做

git reset --soft 9157b6910

如何撤消远程提交 (How to undo a remote commit)

There are times you want to undo a commit you have pushed to a remote repository. You can use git revert to undo it locally and push this change to the remote branch.

有时您想撤消已推送到远程存储库的提交。 您可以使用git revert在本地撤消它,并将此更改推送到远程分支。

First, get the commit hash using git reflog.

首先,使用git reflog获取提交哈希。

git reflog

Then revert it. Assuming my commit hash is 9157b6910, I'll do the following:

然后还原它。 假设我的提交哈希为9157b6910,我将执行以下操作:

git revert 9157b6910

Finally, push this change to the remote branch.

最后,将此更改推送到远程分支。

摘要 (Summary)

In this article, we discussed commands to do the following in Git:

在本文中,我们讨论了在Git中执行以下操作的命令:

  1. Add Remote Repositories

    添加远程存储库
  2. Change remote repositories

    更改远程存储库
  3. Delete a branch

    删除分支
  4. Merge a file from one branch to another

    将文件从一个分支合并到另一个分支
  5. Undo a commit locally and remotely

    本地和远程撤消提交

Maybe someday, I'll write about more things you can do with Git.

也许有一天,我会写更多关于Git可以做的事情。

I hope you enjoyed the article. Thanks for reading.

希望您喜欢这篇文章。 谢谢阅读。

Want to get notified when I publish a new article? Click here.

想在我发表新文章时得到通知吗? 请点击这里 。

翻译自: https://www.freecodecamp.org/news/5-git-commands-you-should-know-with-code-examples/

vue项目示例代码git

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

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

相关文章

413. 等差数列划分

413. 等差数列划分 如果一个数列 至少有三个元素 &#xff0c;并且任意两个相邻元素之差相同&#xff0c;则称该数列为等差数列。 例如&#xff0c;[1,3,5,7,9]、[7,7,7,7] 和 [3,-1,-5,-9] 都是等差数列。 给你一个整数数组 nums &#xff0c;返回数组 nums 中所有为等差数组…

山羊与汽车游戏的实验算法

实验1&#xff1a; function shuffle(target) {var j, x, i target.length;for (; i > 0; j parseInt(Math.random() * i), x target[--i], target[i] target[j], target[j] x) {}return target }function removeAt(target, index) {return !!target.splice(index, 1).…

selenium模块

selenium模块 阅读目录 一 介绍二 安装三 基本使用四 选择器五 等待元素被加载六 元素交互操作七 其他八 项目练习一 介绍 selenium最初是一个自动化测试工具,而爬虫中使用它主要是为了解决requests无法直接执行JavaScript代码的问题selenium本质是通过驱动浏览器&#xff0c;完…

关闭iphone来电mac_如何在Mac和iPhone上关闭通用剪贴板切换(以及为什么要禁用此功能)

关闭iphone来电macIm about to tell you something that will shock you, and probably make you very angry. I hope you wont hate me for it. Here goes.我正要告诉您一些令您震惊的事情&#xff0c;并可能使您非常生气。 我希望你不会为此而恨我。 开始。 If you are an i…

关于tomcat Post 数据参数的问题

2019独角兽企业重金招聘Python工程师标准>>> POST请求本身并未限制传入参数大小&#xff0c;是tomcat 容器设置了接收参数大小的限制。修改server.xml <Connector port"8080" protocol"HTTP/1.1" connectionTimeout"2000" red…

iOS:通信录(完成)(18-01-18更)

1、读取通信录 1&#xff09;、9.0以前&#xff1a;AddressBook 2&#xff09;、9.0以后&#xff1a;Contacts 2、调用通信录UI&#xff08;不弄&#xff09; 1&#xff09;、9.0以前&#xff1a;AddressBookUI 2&#xff09;、9.0以后&#xff1a;ContactsUI 3、参考 0、写在前…

如何在React Native和Firebase中设置Google登录

Google sign-in is a great login feature to offer to your apps users. It makes it easier for them to create an account and sign in. Google登录是一项出色的登录功能&#xff0c;可为您的应用程序用户提供。 这使他们更容易创建帐户并登录。 And whats even better, F…

设计模式-发布订阅模式

这段时间在看vue的双向绑定原理&#xff0c;知道了vue的核心三大件&#xff1a;Observer, Complie, Watcher。 Observer用于监听属性的变化&#xff0c;如有变动就通知 Watcher。 Compile负责解析元素节点的指令&#xff0c;如v-if&#xff0c;v-bind之类, 进行数据和回调函数的…

杜教筛--51nod1239 欧拉函数之和

求$\sum_{i1}^{n}\varphi (i)$&#xff0c;$n\leqslant 1e10$。 这里先把杜教筛的一般套路贴一下&#xff1a; 要求$S(n)\sum_{i1}^{n}f(i)$&#xff0c;而现在有一数论函数$g(i)$&#xff0c;$g(i)$的前缀和很无脑&#xff0c;且$f$和$g$的狄利克雷卷积的前缀和很无脑&#xf…

【Android Studio安装部署系列】目录

概述 从刚开始使用Android Studio到现在&#xff0c;下面所有目录下的操作&#xff0c;当时习惯性的把每一个整理成一个文档&#xff08;其实就是简单文字描述截图&#xff09;&#xff1b;有些地方当时是一知半解&#xff0c;现在会稍微明白一些。正好赶上现在有时间。所以就想…

修改npm全局安装模式的路径

修改npm全局安装模式的路径 在正式写此文章之前&#xff0c;我得说一点血泪史。 刚学nodeJS不久&#xff0c;很纳闷为什么全局安装的模块在 node安装目录/node_modules‘ 中没找到&#xff01;后来仔细看了下安装成功后的信息&#xff0c;才发现原来是自动安装在C盘了&#xff…

javascript创建类_如何使用JavaScript创建吹气效果

javascript创建类Have you ever wondered how you can create a realistic air blowing effect with JavaScript? Like the one shown on the evening TV shows, where multiple balls are being mixed up in a sphere-like object by leveraging air pressure? If you want …

Bootstrap 4:如何使顶部固定的Navbar保持在容器中而不拉伸?

There are many ways to make a fixed navbar stay inside a parents div container. Well go over the most straightforward one here.有很多方法可以使固定的导航栏停留在父级的div容器中。 我们将在这里介绍最简单的方法。 Imagine you have the following code, modified…

基于SpringBoot+Mybatis+Thymeleaf商品信息管理系统

github地址&#xff1a;github.com/zaiyunduan1…,如果对你有帮助&#xff0c;欢迎Star 主要用到的技术&#xff1a; 使用maven进行项目构建使用SpringbootMybatis搭建整个系统使用Thymeleaf模板技术实现页面静态化使用框架Bootstrap、JQuery开发前端界面使用MySQL和MongoDB分别…

在Mac上为自己手动编译安装一套PHP7的开发环境

首先你得去官网下载php7 beta1的版本 这里由于我是在mac上安装&#xff0c;所以就去下载linux相关的版本&#xff0c;地址也直接附上了php7 beta1windows版的官方也有发布详情猛戳&#xff1a;这里 解压安装包&#xff0c;进入源代码目录 tar -zxvf php-7.0.0beta1.tar.gz cd p…

卡特兰数 HDU2067 HDU4165 HDU1134

题目链接&#xff1a;https://vjudge.net/problem/HDU-2067 小兔的棋盘 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 11800 Accepted Submission(s): 5952 Problem Description小兔的叔叔从外面旅游回来给她…

Python的用途是什么? Python编程语言有10多种编码用途。

&#x1f44b;欢迎 (&#x1f44b; Welcome) Hi! Please take a moment to think about this question: 嗨&#xff01; 请花一点时间考虑这个问题&#xff1a; How is Python applied in real-world scenarios? Python如何在实际场景中应用&#xff1f; If you are learnin…

Publish/Subscribe

Publish/Subscribe 我们将会投递一个消息给多个消费者&#xff0c;这种模式被称为“publish/subscribe” 通俗的讲&#xff0c;前面的是点对点队列模型&#xff0c;现在讲的是发布订阅模型。 Exchanges producer&#xff1a;一个发送消息的用户应用程序 queue&#xff1a;一个存…

[转]在ROS下使用zeroconf配置多机通信

原文地址&#xff1a;http://www.corvin.cn/635.html&#xff0c;转载主要方便随时查阅&#xff0c;如有版权要求&#xff0c;请及时联系。 0x00 为何需要配置ROS多机通信 众所周知ROS是分布式系统&#xff0c;因此可以将机器人需要处理的复杂、计算量大的任务分解在多台机器上…

python中斐波那契数列_斐波那契数列–在Python,JavaScript,C ++,Java和Swift中进行了解释...

python中斐波那契数列by Pau Pavn通过保罗帕文(PauPavn) The Fibonacci sequence is, by definition, the integer sequence in which every number after the first two is the sum of the two preceding numbers. To simplify:根据定义&#xff0c;斐波那契数列是整数序列&a…