"git fetch" သို့ အင်္ဂလိပ်စာ သို့ဘာသာပြန်ပါ

ဒတ်ခ်ျ မှ အင်္ဂလိပ်စာ သို့စကားစု "git fetch" ကိုဘာသာပြန်ဆိုထားသော 50 ဘာသာပြန်ဆိုမှု၏ 50 ကိုပြထားသည်။

git fetch ၏ ဘာသာပြန်ချက်များ

ဒတ်ခ်ျ တွင် "git fetch" ကို အောက်ပါ အင်္ဂလိပ်စာ စကားလုံးများ/စကားစုများအဖြစ် ဘာသာပြန်ဆိုနိုင်ပါသည်။

git git

git fetch ၏ ဒတ်ခ်ျ မှ အင်္ဂလိပ်စာ သို့ ဘာသာပြန်ခြင်း

ဒတ်ခ်ျ
အင်္ဂလိပ်စာ

NL Git voor ontwikkelaars Git voor marketing Git voor productbeheer Git voor ontwerpers Git voor klantenondersteuning Git voor Human Resources Git voor iedereen die een budget beheert

EN Git for developers Git for marketing Git for product management Git for designers Git for customer support Git for human resources Git for anyone managing a budget

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
marketing marketing
human human
budget budget

NL Met de functie "Fetch and Improve" kunt u met één klik op de knop zowel de titel als de meta-beschrijving van een site ophalen. Voer gewoon de URl in en druk op de "Fetch data" knop.

EN The fetch and improve feature allows you to fetch both the title and meta description of a site at the click of a button. Simply enter the URl and press the “Fetch data” button.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
functie feature
site site
gewoon simply
url url
data data
meta meta

NL Haal de branch na het aanmaken op en check deze uit van je lokale systeem. Bitbucket zal automatisch de opdracht tonen die nodig is. Dat zal er ongeveer zo uitzien: git fetch && git checkout

EN Once created, fetch and checkout the branch from your local system. Bitbucket will automatically show you the command needed, and it will look something like this: git fetch && git checkout

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
branch branch
aanmaken created
lokale local
systeem system
bitbucket bitbucket
automatisch automatically
opdracht command
tonen show
nodig needed
git git
checkout checkout

NL Haal de branch na het aanmaken op en check deze uit van je lokale systeem. Bitbucket zal automatisch de opdracht tonen die nodig is. Dat zal er ongeveer zo uitzien: git fetch && git checkout

EN Once created, fetch and checkout the branch from your local system. Bitbucket will automatically show you the command needed, and it will look something like this: git fetch && git checkout

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
branch branch
aanmaken created
lokale local
systeem system
bitbucket bitbucket
automatisch automatically
opdracht command
tonen show
nodig needed
git git
checkout checkout

NL Haal de branch na het aanmaken op en check deze uit van je lokale systeem. Bitbucket zal automatisch de opdracht tonen die nodig is. Dat zal er ongeveer zo uitzien: git fetch && git checkout

EN Once created, fetch and checkout the branch from your local system. Bitbucket will automatically show you the command needed, and it will look something like this: git fetch && git checkout

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
branch branch
aanmaken created
lokale local
systeem system
bitbucket bitbucket
automatisch automatically
opdracht command
tonen show
nodig needed
git git
checkout checkout

NL Een Git-repository aanmaken Je Git-repository kopiëren en bestanden toevoegen Wijzigingen uit je Git-repository op Bitbucket Cloud halen Een Git-branch gebruiken om een bestand samen te voegen

EN Create a Git repository Copy your Git repository and add files Pull changes from your Git repository on Bitbucket Cloud Use a Git branch to merge a file

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
aanmaken create
kopiëren copy
wijzigingen changes
bitbucket bitbucket
cloud cloud
halen pull
gebruiken use
git git
je your
branch branch

NL Git heeft een eigen URL-syntaxis die wordt gebruikt om externe repository-locaties door te geven aan Git-opdrachten. Omdat git clone het meest wordt gebruikt op externe repositories, zullen we hier de Git URL-syntaxis bestuderen.

EN Git has its own URL syntax which is used to pass remote repository locations to Git commands. Because git clone is most commonly used on remote repositories we will examine Git URL syntax here.  

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
externe remote
clone clone
hier here
url url
syntaxis syntax
locaties locations

NL Een protocol dat uniek is voor git. Git wordt geleverd met een daemon die draait op poort (9418). Het protocol is vergelijkbaar met SSH, maar het heeft GEEN AUTHENTICATIE. git://host.xz[:poort]/pad/naar/repo.git/

EN A protocol unique to git. Git comes with a daemon that runs on port (9418). The protocol is similar to SSH however it has NO AUTHENTICATION. git://host.xz[:port]/path/to/repo.git/  

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
protocol protocol
git git
draait runs
poort port
vergelijkbaar similar
ssh ssh
authenticatie authentication
host host

NL Deze automatische verbinding wordt tot stand gebracht door Git-refs te maken naar de koppen van de externe branches onder refs/remotes/origin en door de configuratievariabelen remote.origin.url en remote.origin.fetch te initialiseren.

EN This automatic connection is established by creating Git refs to the remote branch heads under refs/remotes/origin and by initializing remote.origin.url and remote.origin.fetch configuration variables.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
automatische automatic
verbinding connection
origin origin
url url
git git

NL Is Git nieuw voor jou? Maak je geen zorgen, wij helpen je. Lees onze tutorials 'Git goed begrijpen' om kennis te maken met Git.

EN New to Git? No worries, we got you covered. Read our Getting Git Right tutorials for a primer on Git.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
nieuw new
geen no
tutorials tutorials
zorgen worries

NL Breng je wijzigingen lokaal aan en voeg ze vervolgens toe, maak commits en push ze naar de branch:git add. git commit -m "een wijziging toevoegen uit de functie-branch" git push origin

EN Make your changes locally and then add, commit, and push your changes to the  branch:git add . git commit -m "adding a change from the feature branch" git push origin

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
lokaal locally
branch branch
git git
origin origin
je your
functie feature

NL Is Git nieuw voor jou? Maak je geen zorgen, wij helpen je. Lees onze tutorials 'Git goed begrijpen' om kennis te maken met Git.

EN New to Git? No worries, we got you covered. Read our Getting Git Right tutorials for a primer on Git.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
nieuw new
geen no
tutorials tutorials
zorgen worries

NL Breng je wijzigingen lokaal aan en voeg ze vervolgens toe, maak commits en push ze naar de branch:git add. git commit -m "een wijziging toevoegen uit de functie-branch" git push origin

EN Make your changes locally and then add, commit, and push your changes to the  branch:git add . git commit -m "adding a change from the feature branch" git push origin

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
lokaal locally
branch branch
git git
origin origin
je your
functie feature

NL Breng je wijzigingen lokaal aan en voeg ze vervolgens toe, maak commits en push ze naar de branch:git add. git commit -m "een wijziging toevoegen uit de functie-branch" git push origin

EN Make your changes locally and then add, commit, and push your changes to the  branch:git add . git commit -m "adding a change from the feature branch" git push origin

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
lokaal locally
branch branch
git git
origin origin
je your
functie feature

NL Er zijn verschillende manieren om Git op een Mac te installeren. Sterker nog, als je XCode hebt geïnstalleerd (of de Command Line Tools), is Git misschien al geïnstalleerd. Open een terminal en voer git --version in om daar achter te komen.

EN There are several ways to install Git on a Mac. In fact, if you've installed XCode (or it's Command Line Tools), Git may already be installed. To find out, open a terminal and enter git --version.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
manieren ways
git git
mac mac
command command
line line
tools tools
terminal terminal

NL Apple onderhoudt en levert in feite een eigen vertakking van Git; deze loopt eigenlijk meerdere grote versies achter op de gangbare Git. Misschien wil je een nieuwere versie van Git installeren op een van de volgende manieren:

EN Apple actually maintain and ship their own fork of Git, but it tends to lag behind mainstream Git by several major versions. You may want to install a newer version of Git using one of the methods below:

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
apple apple
git git
grote major
nieuwere newer
manieren methods

NL Om te leren hoe je Git kunt gebruiken met Sourcetree (en hoe je je Git-repository's op Bitbucket kunt hosten), kun je onze uitgebreide Git-tutorial met Bitbucket en Sourcetree volgen.

EN To learn how to use Git with Sourcetree (and how to host your Git repositories on Bitbucket) you can follow our comprehensive Git tutorial with Bitbucket and Sourcetree.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
sourcetree sourcetree
bitbucket bitbucket
hosten host
uitgebreide comprehensive
volgen follow
repository repositories
tutorial tutorial

NL De Git-bron klonen (of download Git en pak die dan uit als je nog geen versie van Git hebt geïnstalleerd):

EN Clone the Git source (or if you don't yet have a version of Git installed, download and extract it):

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
klonen clone
download download
git git
versie version
geïnstalleerd installed
bron source

NL Raadpleeg voor meer informatie over git clone-functionaliteit de officiële Git-documentatie. We behandelen ook praktische voorbeelden van git clone in onze handleiding voor het instellen van een repository.

EN For further, deeper reference on git clone functionality, consult the official Git documentation. We also cover practical examples of git clone in our setting up a repository guide.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
raadpleeg consult
git git
praktische practical
clone clone
handleiding guide
repository repository
functionaliteit functionality

NL U kunt de HTTP-statuscodes van uw website controleren via de Google Search Console. Om dit te doen, moet u de codes van een specifiek adres opvragen via de URL-inspectietool. U zult de statuscode zien als de "Page fetch" resultaten.

EN You can check your website?s HTTP status codes using the Google Search Console. To do this, you need to request the codes of a specific address via the URL inspection tool. You will see the status code as the ?Page fetch? results.

NL Fetch koppelt de kwitantie in het postvak IN van je Gmail, Outlook of Microsoft 365 aan de bijbehorende Pleo-uitgave

EN Fetch pairs up the receipt in your Gmail, Outlook or Microsoft 365 inbox with the matching Pleo expense

NL Maar Fetch doet meer dan alleen naar kwitanties zoeken die binnenkomen in je e-mailaccount

EN Fetch doesn’t just search for receipts as they come in to your email account

NL Fetch kan ook ontbrekende kwitanties van het afgelopen jaar opsporen en je een melding sturen wanneer het gelukt is

EN It can sniff out any missing receipts from the last year and notify you when it’s done

NL Pleo slaat je e-mails niet op en Fetch haalt alleen berichten op die kwitanties bevatten

EN Pleo doesn’t store your emails and Fetch will only retrieve messages that contain receipts

NL fetch, wat gebeurt wanneer een bron wordt opgehaald.

EN fetch, which occurs whenever a resource is fetched.

NL De resultaten voor mobiel en desktop lijken erg op elkaar, waarbij install, fetch en activate de drie meest populaire gebeurtenissen zijn, gevolgd door message, notificationclick, push en sync

EN The results for mobile and desktop are very similar with install, fetch, and activate being the three most popular events, followed by message, notification click, push and sync

NL Met preload kunnen veel verschillende content-types worden voorgeladen en de complete lijst volgt de aanbevelingen die in de Fetch spec staan

EN With preload many different content-types can be preloaded and the full list follows the recommendations made in the Fetch spec

NL Priority hints zijn een API voor het aangeven van de fetch-prioriteit van een bron: hoog, laag of automatisch

EN Priority hints are an API for expressing the fetch priority of a resource: high, low, or auto

NL Deze nieuwe hint kan worden gebruikt als een HTML-tag of door de prioriteit van fetch-verzoeken te wijzigen via de importance optie, die dezelfde waarden aanneemt als het HTML-attribuut.

EN This new hint can be used either as an HTML tag or by changing the priority of fetch requests via the importance option, which takes the same values as the HTML attribute.

NL Gebruik Bitbucket als Git-sandbox met tutorials die je leren Git te gebruiken en effectieve workflows te bouwen.

EN Make Bitbucket your Git sandbox with tutorials that bring you up to speed with Git and help you build effective workflows.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
bitbucket bitbucket
tutorials tutorials
git git
effectieve effective
workflows workflows

NL Sourcetree vereenvoudigt hoe je met je Git-opslagplaatsen werkt, zodat je je op codering kunt concentreren. Visualiseer en beheer je opslagplaatsen met de simpele Git-interface van Sourcetree.

EN Sourcetree simplifies how you interact with your Git repositories so you can focus on coding. Visualize and manage your repositories through Sourcetree's simple Git GUI.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
sourcetree sourcetree
vereenvoudigt simplifies
zodat so
codering coding
concentreren focus
visualiseer visualize
beheer manage
opslagplaatsen repositories
simpele simple
git git

NL Niet zomaar een Git GUI. Sourcetree plaatst de kracht van Git in het middelpunt in een gebruiksvriendelijke interface.

EN Not just a Git GUI. Sourcetree places the power of Git front and center in an easy-to-use interface.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
gui gui
sourcetree sourcetree
plaatst places
kracht power
middelpunt center
interface interface

NL Gebruik Bitbucket als Git-sandbox met tutorials die je leren Git te gebruiken en effectieve workflows te bouwen.

EN Make Bitbucket your Git sandbox with tutorials that bring you up to speed with Git and help you build effective workflows.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
bitbucket bitbucket
tutorials tutorials
git git
effectieve effective
workflows workflows

NL Migreer eenvoudig van SVN naar Git: importeer en mirror SVN-repositories naar Git in de interface van Bitbucket

EN Simplify your SVN to Git migration: import and mirror SVN repositories to Git within Bitbucket UI

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
svn svn
git git
bitbucket bitbucket
eenvoudig simplify
repositories repositories

NL Als je project Git gebruikt en de repositoryservice Git niet ondersteunt, wordt het erg lastig om die repository-hostingservice te gebruiken.

EN If your project is using Git and the repository service doesn’t offer Git support, it would be very challenging to use that repository hosting service.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
project project
git git
erg very
repository repository

NL Ga naar onze Git-tutorial om de Git-opdrachten van A tot Z te leren kennen.

EN Head on over to our Git tutorial to learn the A-Z of Git commands.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
onze our
git git
tutorial tutorial

NL Plak de opdracht die je uit Bitbucket hebt gekopieerd (zoiets als dit): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

EN Paste the command you copied from Bitbucket (would like something like this): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
opdracht command
bitbucket bitbucket
gekopieerd copied
git git
clone clone
https https
org org
ဒတ်ခ်ျ အင်္ဂလိပ်စာ
branch branch
aanmaken create
git git
opdracht command

NL Stap 9: Git inschakelen kunt u de bestanden van uw site van een git-repository kopiëren in plaats van uploaden via Plesk of FTP.

EN Step 9: Enabling Git will allow you to copy your site's files from a Git repository rather than upload through Plesk or FTP.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
stap step
git git
inschakelen enabling
kunt will
uploaden upload
plesk plesk
of or
ftp ftp

NL Gebruik Bitbucket als Git-sandbox met tutorials die je leren Git te gebruiken en effectieve workflows te bouwen.

EN Make Bitbucket your Git sandbox with tutorials that bring you up to speed with Git and help you build effective workflows.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
bitbucket bitbucket
tutorials tutorials
git git
effectieve effective
workflows workflows

NL Ga naar onze Git-tutorial om de Git-opdrachten van A tot Z te leren kennen.

EN Head on over to our Git tutorial to learn the A-Z of Git commands.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
onze our
git git
tutorial tutorial

NL Plak de opdracht die je uit Bitbucket hebt gekopieerd (zoiets als dit): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

EN Paste the command you copied from Bitbucket (would like something like this): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
opdracht command
bitbucket bitbucket
gekopieerd copied
git git
clone clone
https https
org org
ဒတ်ခ်ျ အင်္ဂလိပ်စာ
branch branch
aanmaken create
git git
opdracht command

NL Wanneer je de 'git-flow'-extensiebibliotheek gebruikt, zal het uitvoeren van git flow init op een bestaande repo de develop-branch aanmaken:

EN When using the git-flow extension library, executing git flow init on an existing repo will create the develop branch:

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
flow flow
bestaande existing
branch branch

NL Sourcetree vereenvoudigt hoe je met je Git-opslagplaatsen werkt, zodat je je op codering kunt concentreren. Visualiseer en beheer je opslagplaatsen met de simpele Git-interface van Sourcetree.

EN Sourcetree simplifies how you interact with your Git repositories so you can focus on coding. Visualize and manage your repositories through Sourcetree's simple Git GUI.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
sourcetree sourcetree
vereenvoudigt simplifies
zodat so
codering coding
concentreren focus
visualiseer visualize
beheer manage
opslagplaatsen repositories
simpele simple
git git

NL Niet zomaar een Git GUI. Sourcetree plaatst de kracht van Git in het middelpunt in een gebruiksvriendelijke interface.

EN Not just a Git GUI. Sourcetree places the power of Git front and center in an easy-to-use interface.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
gui gui
sourcetree sourcetree
plaatst places
kracht power
middelpunt center
interface interface

NL Plak de opdracht die je uit Bitbucket hebt gekopieerd (zoiets als dit): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

EN Paste the command you copied from Bitbucket (would like something like this): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
opdracht command
bitbucket bitbucket
gekopieerd copied
git git
clone clone
https https
org org
ဒတ်ခ်ျ အင်္ဂလိပ်စာ
branch branch
aanmaken create
git git
opdracht command

NL Met Git LFS worden grote bestanden parallel aan je code bewaard en kleine referenties in je Git-repository. Dit is handig voor teams die werken met grote media zoals audio- of videobestanden, omdat repositories kleiner en sneller worden.

EN Using Git LFS, large files are kept in parallel storage to your code, and lightweight references are stored in your Git repository. This is useful for teams that work with large media such as audio or video files, making repositories smaller and faster.

ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
grote large
parallel parallel
code code
referenties references
handig useful
teams teams
werken work
media media
of or
sneller faster
je your
ဒတ်ခ်ျ အင်္ဂလိပ်စာ
git git
leren learn
met with
bitbucket bitbucket
cloud cloud
atlassian atlassian
tutorial tutorial

ဘာသာပြန်ချက်များကို 50 မှ 50 ကိုပြနေသည်