花费 219 ms 找到 192923 条记录
'git remote update','git fetch'和'git pull'有什么区别?

[英]What is the difference between 'git remote update', 'git fetch' and 'git pull'?

我现在开始和Git玩了,我有点困惑。 对我来说,看起来有很多选择可以做同样的事情。 我现在的问题是以下命令之间的区别是什么: git远程更新 git fetch git pull 还有哪一个更适用于更新远程分支的本地副本? ...

2013-07-18 00:16:33   2   23307    git  
TortoiseGit:“Git Sync”、“Fetch”和“Pull”有什么区别?

[英]TortoiseGit: What's the difference between “Git Sync”, “Fetch” and “Pull”?

我正在从 TortoiseSvn 迁移到 TortoiseGit。 却遇到了一些意想不到的困难。 我的工作范式很简单: 签出代码 更改一些代码 与他人共享以进行代码审查 提交更改 为什么要使用下面的 3 个syntactically相似的命令? Pull和Fetch甚至共享相同的 ...

git pull和git fetch + rebase有什么区别

[英]What's difference between git pull and git fetch+rebase

我正在使用GIT作为版本控制系统的项目。 在项目的开发过程中,它说 不要使用“ git pull”,因为那样会导致合并并随着时间的推移创建非常混乱的历史记录。 使用git fetch和git rebase代替。 基本上我知道git pull实际上是git fetch + g ...

2013-11-17 08:40:40   2   516    git  
`git lfs fetch`、`git lfs fetch --all` 和 `git lfs pull` 有什么区别?

[英]What is the difference between `git lfs fetch`, `git lfs fetch --all`, and `git lfs pull`?

尽管使用git多年,我发现git lfs ( git Large File Storage ) 使用起来相当混乱,即使是在非常基础的层面上也是如此。 有人可以解释这三个命令之间的区别吗?: git lfs fetch git lfs fetch --all git lfs pull ...

2022-06-14 01:05:10   1   178    git / git-lfs  
`git fetch` 然后 `git rebase` 和 `git pull --rebase` 有什么区别?

[英]What's the difference between `git fetch` then `git rebase`, and `git pull --rebase`?

在阅读git pull页面时,它给出了关于git pull --rebase的严厉警告: 这是一种潜在的危险操作模式。 它改写了历史,当您已经发布了该历史时,这并不是一个好兆头。 除非您仔细阅读 git-rebase(1),否则不要使用此选项。 在git rebase页面中,它提供了很多描述,但没 ...

git -q pull和git pull有什么区别?

[英]What's the difference between git -q pull and git pull?

我已经在有关git cronjob的问题上看到了这一点,其中使用了git -q pull origin master 。 但是我根本找不到关于-q参数的任何内容? 例如,使用git pull origin master与git -q pull origin master有什么区别? 这 ...

2014-06-19 02:22:55   2   1140    git / github  
`git fetch origin` 和 `git fetch git://127.0.0.1/` 有什么区别

[英]What's the difference between `git fetch origin` and `git fetch git://127.0.0.1/`

我正在试验 git 并在~/A中创建了~/A仅包含主分支的存储库。 然后我将这个存储git clone git://127.0.0.1/到~/B (通过在~/A启动一个git daemon并运行git clone git://127.0.0.1/ )。 然后我在~/A创建了一个新的test分支并 ...

git拉和git拉原点有什么区别<branchname></branchname>

[英]What is the difference between git pull and git pull origin <branchName>

我有一个父分支origin/develop ,从这个分支我创建了一个子分支feature/NewFeatureBranch 我现在使用git checkout feature/NewFeatureBranch feature/NewFeatureBranch 现在我已经完成了git pull并且可以 ...

git pull和rebase有什么区别?

[英]What is the difference between git pull and rebase?

我试图理解git pull和rebase之间的区别,但是到处都在发现merge和rebase之间的区别。 我了解merge和rebase之间的区别,但是我担心pull和rebase有何不同,因为both bring the latest changes from remote reposi ...

2013-08-13 20:30:03   3   115    git  
git 中的 pull 和 clone 有什么区别?

[英]What is the difference between pull and clone in git?

这样做有什么区别(在mkdir repo和cd repo ): 和 我的意思是,显然一个更短,但除此之外,他们基本上做同样的事情吗? ...

2010-09-01 17:30:32   12   239733    git / clone / pull  
“ git subtree pull”和“ git pull -s subtree”有什么区别

[英]What is the difference between “git subtree pull” and “git pull -s subtree”

我们遇到了以下命令的问题: 正在将代码从根存储库中拉入。 目录而不是Root目录。 该命令在过去运行良好。 唯一的区别是,自从完成拉动以来已经有一段时间了,因此有很多要合并的更改。 我似乎找不到关于“ git subtree”的任何官方文档,但是与“ git pull - ...

这些`git fetch`语法有什么区别?

[英]What is the difference between these `git fetch` syntaxes?

我已经克隆了一个存储库( git clone --bare ),显然git fetch不会更新它,但是git fetch origin master:master可以。 我不明白这些语法之间的所有细微差别: git fetch git fetch origin git ...

git push 和 git pull 有什么区别?

[英]What is the difference between git push and git pull?

我今天偶然发现了一些奇怪的东西。 我在暑期工作时请一位同事帮我为我的代码设置一个新的远程 git 存储库,关于他做了什么和我想做什么有很多困惑。 我让他发送他的配置,以便能够看到他的遥控器的路径,但发现他没有遥控器。 当我问他这个问题时,他这样解释他的工作流程: 在本地更改一些东西犯罪移动到远程目 ...

git获取并拉

[英]git fetch and pull

在这里,我们正在将源代码迁移到github,而这一交易让我头疼:) 我做了什么:我去了我们的工作区(一个Eclipse项目),并做了git init和git add . 然后git commit -am "first commit" 一切正常,然后,我将其推送到github。 也成功 ...

2012-01-27 10:49:00   2   326    git / github  
git clone --mirror 和 pull 有什么区别

[英]What is the difference between git clone --mirror and pull

我的理解是 clone 和 pull 之间真的没有区别。 或者换句话说git clone -- bare和git pull做同样的git pull 。 但是由于git clone --mirror更新了本地引用,它会与 pull 不同吗? 编辑:我错误地认为 git clone 默认是 --ba ...


 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM