"Git add" is not found on TREX in Dutch-English direction
Try Searching In English-Dutch (Git add)

Low quality sentence examples

Het lijkt op git add in die zin dat het de verwijdering van een bestand staged voor de volgende commit.
It is similar to git add in that it stages a removal of a file for the next commit.
En, zoals git reset en git add, accepteert checkout een--patch optie zodat je selectief stukje bij beetje bestandsinhoud kunt terugdraaien.
Like git reset and git add, checkout will accept a--patch option to allow you to selectively revert file contents on a hunk-by-hunk basis.
Als we kijken naar het diagram voor dat commando en denken aan wat git add doet, zijn ze exact elkaars tegenpolen.
If we look at the diagram for that command and think about what git add does, they are exact opposites.
waar we het hebben gebruikt om een bestand te unstagen waar we git add op hadden gebruikt.
of git reset in“將檔案移出暫存區”, where we use it to unstage a file we had run git add on.
Het git commit commando neemt alle bestandsinhoud die zijn gestaged met git add en slaat een nieuwe permanente snapshot in de database op en verplaatst daarna de
The git commit command takes all the file contents that have been staged with git add and records a new permanent snapshot in the database
Git add is een veelzijdig commando: je gebruikt het om bestanden te laten tracken,
Git add is a multipurpose command- you use it to begin tracking new files,
Door de-a optie aan het git commit commando mee te geven zal Git automatisch ieder bestand dat al getrackt wordt voor de commit stagen, zodat je het git add gedeelte kunt overslaan.
Adding the-a option to the git commit command makes Git automatically stage every file that is already tracked before doing the commit, letting you skip the git add part.
waarop je nog geen git add uitgevoerd hebt, niet in deze commit mee zal gaan.
you have created or modified that you haven't run git add on since you edited them- won't go into this commit.
dus git add wordt gebruikt om de samenstelling van de volgende commit precies naar jouw eigen wens te bepalen.
so git add is used to craft what exactly you would like your next commit snapshot to look like.
Git add-N dir/ file& amp; git write-tree" heeft een onjuiste boomstructuur gegenereerd als er zich nog andere paden in dezelfde map bevinden die sorteert achter"bestand.
Git add-N dir/file&& git write-tree" produced an incorrect tree when there are other paths in the same directory that sorts after"file.
Als je een bestand wijzigt nadat je git add uitvoert, dan moet je git add nogmaals uitvoeren om de laatste versie van het bestand te stagen.
If you modify a file after you run git add, you have to run git add again to stage the latest version of the file.
Md” zoals het was toen je voor‘t laatst git add uitvoerde worden toegevoegd in de commit, en niet de versie van het bestand
Md as it was when you last ran the git add command is how it will go into the commit,
Je hoeft overigens niet in de interactieve toevoeg modues te zijn om het stagen van bestandsdelen te doen; je kunt hetzelfde script starten door git add-p of git add--patch op de commando regel te typen.
You also don't need to be in interactive add mode to do the partial-file staging- you can start the same script by using git add-p or git add--patch on the command line.
we de inhoud van het bestand naar v1 in de werk directory hadden teruggedraaid, git add ervoor hadden aangeroepen, en daarna het weer hadden teruggedraaid naar v3 zonder daadwerkelijk al deze stappen te hebben gevolgd.
we had reverted the content of the file to v1 in the Working Directory, ran git add on it, then reverted it back to v3 again without actually going through all those steps.
Om het te stagen, voer je het git add commando uit het is een veelzijdig commando: je gebruikt het om bestanden te laten tracken,
To stage it, you run the git add command it's a multipurpose command- you use it to begin tracking new files,
Je staged de wijzigingen die je wilt door een bestand te wijzigen en git add er op uit te voeren, of git rm op een getrackt bestand, en de daaropvolgende git commit--amend pakt je huidige staging area en maakt
You stage the changes you want by editing a file and running git add on it or git rm to a tracked file,
Daar laten we ook zien hoe je de-a vlag kunt gebruiken om de git add stap over te slaan in de dagelijkse workflows
There we also demonstrate how to use the-a flag to skip the git add step in daily workflows and how to use
Git weet nog niet wat de inhoud van de index moet zijn voor een pad dat is toegevoegd met"git add-N", dus"git grep--cached" mag geen hits tonen(of tonen een gebrek aan hits, met-L) in zo'n pad,
Git does not know what the contents in the index should be for a path added with"git add-N" yet, so"git grep--cached" should not show hits(or show lack of hits,
In essentie is dit wat Git doet als je de git add en git commit commando's gebuikt- het slaat blobs op voor de bestanden die zijn gewijzigd,
This is essentially what Git does when you run the git add and git commit commands- it stores blobs for the files that have changed,
Je kunt het als een nieuwe remote referentie toevoegen aan het project waar je nu aan werkt door het git remote add commando uit te voeren, zoals we behandeld hebben in Git Basics.
You can add it as a new remote reference to the project you're currently working on by running the git remote add command as we covered in Git Basics.