What is the translation of " GIT PULL " in Bulgarian?

Examples of using Git pull in English and their translations into Bulgarian

{-}
  • Colloquial category close
  • Official category close
  • Medicine category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Computer category close
In the simplest terms,“git pull” does a“git fetch” followed by a“git merge”.
В най-простия смисъл git pull изпълнява git fetch последвано от git merge.
In 衍合 we used it to make--rebase the default when you run git pull.
В Пребазиране на клонове използвахме командата за да направим--rebase опция по подразбиране при изпълнение на git pull.
You can also simplify this by running a git pull--rebase instead of a normal git pull.
Можете също така да опростите това изпълнявайки git pull--rebase, вместо нормален git pull.
The command‘git pull' brings the changes in the remote repository to where you keep your own code.
Git pull казва:"Преместете промените в отдалеченото хранилище, където запазвам собствения си код.".
Generally it's better to simply use the fetch andmerge commands explicitly as the magic of git pull can often be confusing.
В общия случай е по-добреда използвате fetch и merge, защото понякога магията на git pull може да създаде недоразумения.
If you are using git pull and want to make--rebase the default, you can set the pull.
Ако използвате git pull и искате да включите--rebase аргумента по подразбиране, можете да зададете pull..
The new version of core may require newer versions of extensions and skins,so you must go into each extension and skin directory and update it with a command like git pull--recurse-submodules.
Новата версия наосновния код може да изисква по-нови версии на разширения и облици, така че трябва да влезете във директорията на всяко разширение и облик и да я актуализирате с команда като git pull--recurse-submodules.
Git pull is shorthand for Git fetch, followed by Git merge FETCH_HEAD.
В най-простия смисъл git pull изпълнява git fetch последвано от git merge.
If you're on a tracking branch and type git pull, Git automatically knows which server to fetch from and branch to merge into.
Ако сте в такъв проследяващ клон и изпълните git pull, Git автоматично знае кой сървър да ползва за изтегляне и в кой клон да слее разликите.
Git pull is shorthand for Git fetch, followed by Git merge FETCH_HEAD.
В режима по подразбиране git pull е съкращение за git fetch, последвано от git сливане FETCH_HEAD.
Making a merge commit feels natural as a Git user(after all, that's what git pull does), and git-tf can do this for you with a simple git tf pull.
Да направим merge къмит звучи естествено за нас като Git потребител(в края на краищата, това е което прави git pull), и git-tf може да го направи с git tf pull.
Git merge is used by Git pull to incorporate changes from one branch to another or from another repository altogether.
Git merge се използва от Git pull за включване на промени от един клон в друг или от друго хранилище.
If you have a branch set up to track a remote branch(see the next section and Chapter 3 for more information),you can use the git pull command to automatically fetch and then merge a remote branch into your current branch.
Ако текущият ви клон код(branch) е настроен да проследява отдалечен клон(вижте следващата секция и Клонове в Git за повече информация),можете да използвате командата git pull за автоматично изтегляне и сливане на данните от отдалечения клон в локалния.
In its default mode, git pull is shorthand for git fetch followed by git merge FETCH_HEAD.
В режима по подразбиране git pull е съкращение за git fetch, последвано от git сливане FETCH_HEAD.
If you and a co-worker are working on the same project and they want you to check something out,running a command like git pull/home/john/project is often easier than them pushing to a remote server and you pulling down.
Ако с ваш колега работите по един и същи проект и той поиска да погледнете нещо по неговата работа, тоедна команда от рода на git pull/home/john/project вероятно ще е по-лесна опция от това той да изпрати нещо до мрежовото хранилище и вие след това да го теглите при вас.
If you do a git pull, you will create a merge commit which includes both lines of history, and your repository will look like this.
Ако направите git pull, ще се създаде merge commit, който включва и двете линни история и хранилището ви ще изглежда така.
Წყაროები↑ This could cause reference problems when you later use"git pull" to upgrade your shallow clone and the newer revision refers to older revisions which are not yet downloaded to your system.
Източници↑ Това може да предизвика проблеми с препращането, когато по-късно използвате"git pull" за обновяване на плиткия клон и по-новата редакция е отнасена към по-старите, които все още не са изтеглени на системата Ви.
Normally,‘git pull' does this by doing a‘git fetch' first to bring the local copy of the remote repository up to date, and then it merges the changes into your own code repository and possibly your working copy.
Обикновено git pull прави това, като изпълнява git fetch да актуализира локално копие на отдалеченото хранилище, и след това да обедини промените в собственото си хранилище за кодове и евентуално в работното копие.
If you have a tracking branch set up as demonstrated in the last section, either by explicitly setting it orby having it created for you by the clone or checkout commands, git pull will look up what server and branch your current branch is tracking, fetch from that server and then try to merge in that remote branch.
Ако имате проследяващ клон създаден по начина по-горе, изрично посочен от вас илиавтоматично създаден като следствие от командите clone или checkout, то git pull последователно ще потърси кое отдалечено хранилище и клон са следени от текущия локален клон, след това ще изтегли информацията от тях и ще се опита да я слее автоматично в локалния клон.
More specifically, Git pull runs Git fetch with the given parameters and calls Git merge to merge the retrieved branch heads into the current branch.
По-конкретно, git pull изпълнява git fetch с дадените параметри и призовава git merge да обедини получените заглавия на клонове в текущия клон.
If you notice the line that says git pull patch-1, this is a simple way to merge in a remote branch without having to add a remote.
Ако виждате ред git pull patch-1, това е прост начин да слеете отдалечен клон без да трябва да добавяте remote. Видяхме това в Извличане от отделечени клонове.
However, there is a command called git pull which is essentially a git fetch immediately followed by a git merge in most cases.
Обаче, съществува команда git pull, която по същество е git fetch последвана от автоматично изпълнение на git merge в повечето случаи.
In Git 1.8.3 and later, git merge and git pull can be told to inspect and reject when merging a commit that does not carry a trusted GPG signature with the--verify-signatures command.
В Git 1.8.3 и по-новите версии, git merge и git pull могат да се инструктират да проверяват и отхвърлят сливането на къмити, които не носят в себе си trusted GPG сигнатура с опцията--verify-signatures.
Now, the git user can only use the SSH connection to push and pull Git repositories and can't shell onto the machine.
Сега вече git потребителят може само да използва SSH комуникация за да изтегля и изпраща Git хранилища и няма да има пълноценен шел достъп в машината.
Rebase config value with something like git config--global pull. rebase true.
Rebase конфигурационната стойност с git config--global pull. rebase true.
Pull the master branch into git.
Изтеглете master клона в Git.
Since this leaves the most options open, we recommend you do it this way;git-tf even makes it easy for you with git tf pull--rebase.
Понеже това ни оставя с повече налични опции,бихме препоръчали да правите нещата по този начин, git-tf улеснява процеса с командата git tf pull--rebase.
If you want to see the changes introduced between the current version of a file and the file a month ago, Git can look up the file a month ago and do a local difference calculation, instead of having to either ask a remote server to do it or pull an older version of the file from the remote server to do it locally.
Ако желаете да видите промените в даден файл между текущата му версия и тази отпреди месец, Git ще направи локална калкулация на разликите, вместо да трябва да пита отдалечения сървър за това или да трябва да издърпва по-стара версия от сървъра и едва след това да калкулира разликите локално.
We will also show you how to set up Git to ignore certain files and file patterns, how to undo mistakes quickly and easily, how to browse the history of your project and view changes between commits, and how to push and pull from remote repositories.
Ще ви покажем също как да настроите Git така, че да игнорирате специфични файлове или типове файлове, как да отменяте погрешно направени промени лесно и бързо, как да разглеждате историята на вашия проект и промените между различните публикувания, и как да изпращате и издърпвате към/от отдалечени хранилища. Създаване на Git хранилище.
Results: 29, Time: 0.0374

Word-for-word translation

Top dictionary queries

English - Bulgarian