תרגם את "feature branch" ל- פולני

מציג 50 של 50 תרגומים של הביטוי "feature branch" מ- אנגלית ל- פולני

תרגום של אנגלית ל-פולני של feature branch

אנגלית
פולני

EN The -branch argument lets you specify a specific branch to clone instead of the branch the remote HEAD is pointing to, usually the main branch. In addition you can pass a tag instead of branch for the same effect.

PL Argument -branch pozwala wskazać konkretną gałąź do klonowania zamiast gałęzi głównej, na którą zazwyczaj wskazuje zdalny wskaźnik HEAD. Ponadto zamiast gałęzi można przekazać tag, aby uzyskać identyczny efekt.

אנגלית פולני
specific na
branch branch
remote zdalny
head head
pointing wskazuje
usually zazwyczaj
main głównej
can można
tag tag
effect efekt
instead zamiast
to do
lets pozwala

EN Under this model, developers create a feature branch and delay merging it to the main trunk branch until the feature is complete

PL W tym modelu programiści tworzą gałąź funkcji i opóźniają scalenie jej z gałęzią główną do momentu ukończenia pracy nad funkcją

אנגלית פולני
model modelu
developers programiści
feature funkcji
to do
and i

EN Note that feature branches combined with the develop branch is, for all intents and purposes, the Feature Branch Workflow. But, the Gitflow workflow doesn’t stop there.

PL Należy zauważyć, że gałęzie feature połączone z gałęzią develop pod względem zamierzeń i celów tożsame z przepływem pracy gałęzi funkcji. Ale przepływ pracy Gitflow nie ogranicza się tylko do tego.

אנגלית פולני
feature funkcji
develop develop
purposes celów
workflow przepływ pracy
gitflow gitflow
combined z
all w
and i
but ale

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

PL Domyślna gałąź programowania. Przy każdym utworzeniu repozytorium Git tworzona jest gałąź „main” (główna), która staje się aktywną gałęzią.

אנגלית פולני
default domyślna
development programowania
git git
repository repozytorium
main główna
is jest
created utworzeniu

EN List the branches for this repository. You’ll see the default branch main, and the new branch you created. git branch

PL Wyświetl listę gałęzi dla tego repozytorium. Zobaczysz domyślną gałąź główną oraz nowo utworzoną gałąź. git branch

אנגלית פולני
repository repozytorium
branch branch
git git
and oraz
see zobaczysz

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

PL Domyślna gałąź programowania. Przy każdym utworzeniu repozytorium Git tworzona jest gałąź o nazwie „master”, która staje się aktywną gałęzią.

אנגלית פולני
default domyślna
development programowania
git git
repository repozytorium
is jest
created utworzeniu

EN List the branches for this repository. You’ll see the default branch master, and the new branch you created. git branch

PL Wyświetl listę gałęzi dla tego repozytorium. Zobaczysz domyślną gałąź master oraz nowo utworzoną gałąź. git branch

אנגלית פולני
repository repozytorium
branch branch
git git
and oraz
see zobaczysz

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

PL Domyślna gałąź programowania. Przy każdym utworzeniu repozytorium Git tworzona jest gałąź o nazwie „master”, która staje się aktywną gałęzią.

אנגלית פולני
default domyślna
development programowania
git git
repository repozytorium
is jest
created utworzeniu

EN List the branches for this repository. You’ll see the default branch master, and the new branch you created. git branch

PL Wyświetl listę gałęzi dla tego repozytorium. Zobaczysz domyślną gałąź master oraz nowo utworzoną gałąź. git branch

אנגלית פולני
repository repozytorium
branch branch
git git
and oraz
see zobaczysz

EN The main branch stores the official release history, and the develop branch serves as an integration branch for features

PL W gałęzi main jest przechowywana historia oficjalnych wydań, natomiast gałąź develop służy do integrowania funkcji

אנגלית פולני
official oficjalnych
history historia
develop develop
serves służy
features funkcji
and do

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

PL Domyślna gałąź programowania. Przy każdym utworzeniu repozytorium Git tworzona jest gałąź „main” (główna), która staje się aktywną gałęzią.

אנגלית פולני
default domyślna
development programowania
git git
repository repozytorium
main główna
is jest
created utworzeniu

EN List the branches for this repository. You’ll see the default branch main, and the new branch you created. git branch

PL Wyświetl listę gałęzi dla tego repozytorium. Zobaczysz domyślną gałąź główną oraz nowo utworzoną gałąź. git branch

אנגלית פולני
repository repozytorium
branch branch
git git
and oraz
see zobaczysz

EN The repository history remains unchanged. All you get is a new pointer to the current branch. To begin working on the new branch, you have to check out the branch you want to use.

PL Historia repozytorium nie zmienia się. Pojawia się tylko nowy odnośnik do bieżącej gałęzi. Aby rozpocząć pracę nad nową gałęzią, musisz wyewidencjonować gałąź, której chcesz użyć.

אנגלית פולני
repository repozytorium
history historia
new nowy
current bieżącej
want chcesz
you nie
to do

EN Because you are creating a branch to work on something new, every time you create a new branch (with git branch), you want to make sure to check it out (with git checkout) if you're going to use it

PL Ponieważ tworzysz gałąź w celu pracy nad czymś nowym, za każdym razem, gdy tworzysz nową gałąź (za pomocą polecenia git branch), musisz ją wyewidencjonować (za pomocą polecenia git checkout), jeśli zamierzasz z niej korzystać

אנגלית פולני
git git
checkout checkout
branch gałąź
new nową
if jeśli
with z
work pracy
you niej
use korzystać
because ponieważ
to nad

EN Notice the On branch future-plans line? If you entered git status previously, the line was on branch main because you only had the one main branch

PL Widzisz wiersz On branch future-plans? Jeśli wcześniej wprowadzono polecenie git status, wiersz znajdował się w obszarze branch main, ponieważ istniał tylko jeden obszar branch main

אנגלית פולני
branch branch
git git
status status
if jeśli
only tylko
you je
previously wcześniej

EN Making release branches is another straightforward branching operation. Like feature branches, release branches are based on the develop branch. A new release branch can be created using the following methods.

PL Tworzenie gałęzi release jest kolejną prostą operacją tworzenia gałęzi. Podobnie jak gałęzie feature gałęzie release oparte na gałęzi develop. Nową gałąź release można utworzyć za pomocą opisanych poniżej metod.

אנגלית פולני
release release
like jak
can można
methods metod
is jest
on na
using za
based oparte
created tworzenia

EN A complete example demonstrating a Feature Branch Flow is as follows. Assuming we have a repo setup with a main branch.

PL Poniżej przedstawiono kompletny przykład ilustrujący przepływ gałęzi funkcji. Założono w nim, że mamy konfigurację repozytorium z gałęzią main.

אנגלית פולני
example przykład
feature funkcji
flow przepływ
repo repozytorium
complete w
have z

EN Merge a pull requestAfter your code has been reviewed and approved in a pull request, click the Merge button to merge your branch into the main branch

PL Scalanie pull requestuPo sprawdzeniu i zatwierdzeniu kodu w pull requeście, kliknij przycisk Merge (Scal), aby scalić swoją gałąź z gałęzią główną

אנגלית פולני
code kodu
click kliknij
button przycisk
in w
to aby

EN The code changes from the source branch are now fully incorporated into the target branch.

PL Wówczas zmiany wprowadzone w kodzie w gałęzi źródłowej zostaną w pełni włączone do gałęzi docelowej.

אנגלית פולני
code kodzie
changes zmiany
fully w pełni
target docelowej
into w

EN Merge a pull requestAfter your code has been reviewed and approved in a pull request, click the Merge button to merge your branch into the main branch

PL Scalanie pull requestuPo sprawdzeniu i zatwierdzeniu kodu w pull requeście, kliknij przycisk Merge (Scal), aby scalić swoją gałąź z gałęzią główną

אנגלית פולני
code kodu
click kliknij
button przycisk
in w
to aby

EN The code changes from the source branch are now fully incorporated into the target branch.

PL Wówczas zmiany wprowadzone w kodzie w gałęzi źródłowej zostaną w pełni włączone do gałęzi docelowej.

אנגלית פולני
code kodzie
changes zmiany
fully w pełni
target docelowej
into w

EN Merge a pull requestAfter your code has been reviewed and approved in a pull request, click the Merge button to merge your branch into the main branch

PL Scalanie pull requestuPo sprawdzeniu i zatwierdzeniu kodu w pull requeście, kliknij przycisk Merge (Scal), aby scalić swoją gałąź z gałęzią główną

אנגלית פולני
code kodu
click kliknij
button przycisk
in w
to aby

EN The code changes from the source branch are now fully incorporated into the target branch.

PL Wówczas zmiany wprowadzone w kodzie w gałęzi źródłowej zostaną w pełni włączone do gałęzi docelowej.

אנגלית פולני
code kodzie
changes zmiany
fully w pełni
target docelowej
into w

EN Similar to finishing a release branch, a hotfix branch gets merged into both main and develop.

PL Podobnie jak w przypadku kończenia gałęzi release, gałąź hotfix jest scalana z gałęziami main i develop.

אנגלית פולני
similar podobnie
release release
develop develop
gets jest
and i
into w

EN Merge a pull requestAfter your code has been reviewed and approved in a pull request, click the Merge button to merge your branch into the main branch

PL Scalanie pull requestuPo sprawdzeniu i zatwierdzeniu kodu w pull requeście, kliknij przycisk Merge (Scal), aby scalić swoją gałąź z gałęzią główną

אנגלית פולני
code kodu
click kliknij
button przycisk
in w
to aby

EN The code changes from the source branch are now fully incorporated into the target branch.

PL Wówczas zmiany wprowadzone w kodzie w gałęzi źródłowej zostaną w pełni włączone do gałęzi docelowej.

אנגלית פולני
code kodzie
changes zmiany
fully w pełni
target docelowej
into w

EN Go back to your local terminal window and send your committed changes to Bitbucket using git push origin main. This command specifies that you are pushing to the main branch (the branch on Bitbucket) on origin (the Bitbucket server).

PL Wróć do okna lokalnego terminala i wyślij objęte commitem zmiany do Bitbucket za pomocą polecenia git push origin main. Polecenie to określa, że wypychasz zmiany do gałęzi main (gałęzi w Bitbucket) na źródłowym serwerze Bitbucket.

אנגלית פולני
local lokalnego
terminal terminala
window okna
changes zmiany
bitbucket bitbucket
git git
push push
specifies określa
on na
to do
command polecenie
using za

EN Branch selection: Pick the branch you want to view

PL Wybór gałęzi: wybierz gałąź, którą chcesz wyświetlić

אנגלית פולני
want chcesz
selection wybór
pick wybierz

EN A. Branch with new file: Change if you want to add file to a different branch. B. New file area: Add content for your new file here. 

PL Bitbucket — nowy plikBitbucket — nowy plikA. Gałąź z nowym plikiem: zmień, jeśli chcesz dodać plik do innej gałęzi. B. Obszar nowego pliku: tutaj możesz dodać zawartość nowego pliku.

אנגלית פולני
if jeśli
to do
different innej
b b
area obszar
here tutaj
want chcesz
new nowy
you z

EN For a visual example, this diagram shows the main branch and the other branch with a bug fix update.

PL Ten schemat pokazuje przykładową gałąź main i drugą gałąź z aktualizacją poprawiającą błędy.

אנגלית פולני
shows pokazuje
and i

EN This command creates a branch but does not switch you to that branch, so your repository looks something like this:

PL To polecenie tworzy gałąź, ale nie przełącza Cię do tej gałęzi, więc Twoje repozytorium wygląda podobnie jak poniżej:

אנגלית פולני
command polecenie
creates tworzy
repository repozytorium
to do
looks wygląda
but ale
not nie
like jak

EN Your space station is growing, and it's time for the opening ceremony of your Mars location. Now that your future plans are becoming a reality, you can merge your future-plans branch into the main branch on your local system.

PL Twoja stacja kosmiczna rozrasta się i nadszedł czas na uroczyste otwarcie oddziału na Marsie. Teraz, gdy twoje plany urzeczywistniają się, możesz scalić gałąź future-plans z gałęzią main w systemie lokalnym.

אנגלית פולני
plans plany
can możesz
local lokalnym
system systemie
time czas
of z
now teraz
on na
branch oddział
into w

EN Because you created only one branch and made one change, use the fast-forward branch method to merge

PL Ponieważ utworzono tylko jedną gałąź i wprowadzono jedną zmianę, do scalenia należy użyć metody fast-forward

אנגלית פולני
change zmian
method metody
merge scalenia
and i
only tylko
to do

EN You can do a fast-forward merge because you have a linear path from the current branch tip to the target branch

PL Możesz wykonać scalanie fast-forward, ponieważ masz prostą ścieżkę od bieżącej końcówki gałęzi do gałęzi docelowej

אנגלית פולני
can możesz
current bieżącej
target docelowej
to do

EN Instead of “actually” merging the branches, all Git has to do to integrate the histories is move (i.e., “fast-forward”) the current branch tip up to the target branch tip

PL Zamiast „faktycznego” scalenia gałęzi, Git po prostu integruje historie, przenosząc (metoda „fast-forward”) końcówkę bieżącej gałęzi do końcówki gałęzi docelowej

EN Merge changes from the future-plans branch into the main branch. It will look something like this:

PL Scal zmiany z gałęzi future-plans z gałęzią main. Widok powinien być mniej więcej następujący:

אנגלית פולני
changes zmiany
into z

EN Creating a "branch" in VCS tools keeps multiple streams of work independent from each other while also providing the facility to merge that work back together, enabling developers to verify that the changes on each branch do not conflict

PL Utworzenie „gałęziw narzędziach VCS pozwala realizować wiele strumieni prac niezależnie od siebie, ułatwiając równocześnie scalenie tych prac z powrotem, co umożliwia programistom sprawdzenie, czy wprowadzone zmiany nie kolidują ze sobą

אנגלית פולני
changes zmiany
in w
multiple wiele
of z
do czy
not nie
back powrotem

EN For privacy information, go to: https://branch.io/policies/#privacy To opt-out, visit: https://branch.app.link/optout

PL Aby uzyskać informacje dotyczące polityki prywatności, przejdź do: https://branch.io/policies/#privacy Aby zrezygnować, odwiedź: https://branch.app.link/optout

EN Pipelines can be aligned with the branch structure, making it easier to work with branching workflows like feature branching or git-flow. 

PL Pipelines można dostosować do struktury brancha, co ułatwia stosowanie procedur do pracy z branchami, takich jak feature branching czy git-flow.

אנגלית פולני
structure struktury
pipelines pipelines
feature feature
to do
like takich
with z
work pracy
be można

EN Configure controls on who can do deployments and from which branch. This is a Bitbucket Premium feature and can be accessed through Bitbucket Pipelines.

PL Skonfiguruj kontrole, kto może przeprowadzać wdrożenia i z którego branchu. Jest to funkcja BitBucket Premium i może być dostępna za pośrednictwem Bitbucket Pipelines.

אנגלית פולני
configure skonfiguruj
controls kontrole
can może
deployments wdrożenia
bitbucket bitbucket
premium premium
feature funkcja
is jest
and i
through z

EN Pipelines can be aligned with the branch structure, making it easier to work with branching workflows like feature branching or git-flow. 

PL Pipelines można dostosować do struktury brancha, co ułatwia stosowanie procedur do pracy z branchami, takich jak feature branching czy git-flow.

אנגלית פולני
structure struktury
pipelines pipelines
feature feature
to do
like takich
with z
work pracy
be można

EN Configure controls on who can do deployments and from which branch. This is a Bitbucket Premium feature and can be accessed through Bitbucket Pipelines.

PL Skonfiguruj kontrole, kto może przeprowadzać wdrożenia i z którego branchu. Jest to funkcja BitBucket Premium i może być dostępna za pośrednictwem Bitbucket Pipelines.

אנגלית פולני
configure skonfiguruj
controls kontrole
can może
deployments wdrożenia
bitbucket bitbucket
premium premium
feature funkcja
is jest
and i
through z

EN This feature is already merged, so you can try it already with a recent nightly or build from the master branch

PL Ta funkcja jest już dostępna w wydaniach nocnych, w gałęzi głównej

אנגלית פולני
feature funkcja
already w
is jest

EN Configure controls on who can do deployments and from which branch. This is a Bitbucket Premium feature and can be accessed through Bitbucket Pipelines.

PL Skonfiguruj kontrole, kto może przeprowadzać wdrożenia i z którego branchu. Jest to funkcja BitBucket Premium i może być dostępna za pośrednictwem Bitbucket Pipelines.

אנגלית פולני
configure skonfiguruj
controls kontrole
can może
deployments wdrożenia
bitbucket bitbucket
premium premium
feature funkcja
is jest
and i
through z

EN Pipelines can be aligned with the branch structure, making it easier to work with branching workflows like feature branching or git-flow. 

PL Pipelines można dostosować do struktury brancha, co ułatwia stosowanie procedur do pracy z branchami, takich jak feature branching czy git-flow.

אנגלית פולני
structure struktury
pipelines pipelines
feature feature
to do
like takich
with z
work pracy
be można

EN Feature branches are generally created off to the latest develop branch.

PL Gałęzie feature zasadniczo wyprowadza się z ostatniej gałęzi develop.

אנגלית פולני
off z
develop develop

EN When a feature is complete it is merged into the develop branch

PL Po zakończeniu prac nad gałęzią feature scalenie jej z gałęzią develop.

אנגלית פולני
develop develop
into z

EN This feature is already merged, so you can try it already with a recent nightly or build from the master branch

PL Ta funkcja jest już dostępna w wydaniach nocnych, w gałęzi głównej

אנגלית פולני
feature funkcja
already w
is jest

EN Pipelines can be aligned with the branch structure, making it easier to work with branching workflows like feature branching or git-flow. 

PL Pipelines można dostosować do struktury brancha, co ułatwia stosowanie procedur do pracy z branchami, takich jak feature branching czy git-flow.

אנגלית פולני
structure struktury
pipelines pipelines
feature feature
to do
like takich
with z
work pracy
be można

EN Centralized Workflow Feature Branch Workflow Gitflow Workflow Forking Workflow

PL Centralized Workflow Feature Branch Workflow Przepływ pracy Gitflow Przepływ pracy z podziałem

אנגלית פולני
workflow przepływ pracy
branch branch
gitflow gitflow
feature feature

מציג 50 מתוך 50 תרגומים