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

git pull
την git pull
την εντολή git pull

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

{-}
  • Colloquial category close
  • Official category close
  • Medicine category close
  • Ecclesiastic category close
  • Financial category close
  • Official/political category close
  • Computer category close
Git: Pull complete.
Git: Ολοκληρώθηκε η άντληση.
If this fails because of a merge conflict, fall back to git pull--no-rebase.
Αν αυτό αποτύχει εξαιτίας μιας σύγκρουσης συγχώνευσης, επιστρέφουμε στο git pull--no-rebase.
If you are using git pull and want to make--rebase the default, you can set the pull.
Εάν χρησιμοποιούμε την git pull και θέλουμε να κάνουμε--rebase την προεπιλογή, μπορούμε να ορίσουμε την τιμή του pull.
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.
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, θα δημιουργήσουμε μια υποβολή συγχώνευσης που συμπεριλαμβάνει και τις δύο γραμμές του ιστορικού και το αποθετήριό μας θα μοιάζει με αυτό.
If you or a partner does find it necessary at some point, make sure everyone knows to run git pull--rebase to try to make the pain after it happens a little bit simpler.
Αν αυτό θεωρηθεί απαραίτητο σε κάποιο σημείο, θα πρέπει να βεβαιωθούμε ότι ο καθένας ξέρει να τρέχει την git pull--rebase για να προσπαθήσει να καταπραΰνει τον πόνο εκ των υστέρων.
Running git pull generally fetches data from the server you originally cloned from and automatically tries to merge it into the code you're currently working on.
Εκτελώντας έπειτα την εντολή git pull, έλκουμε δεδομένα από τον διακομιστή που αρχικά είχαμε κλωνοποιήσει, και συγχωνεύουμε τα δεδομένα αυτά με τον κώδικα στον οποίο δουλεύουμε.
If you aren't working with a person consistently but still want to pull fromthem in this way, you can provide the URL of the remote repository to the git pull command.
Εάν δεν συνεργαζόμαστε συχνά με ένα άτομο, αλλά εξακολουθούμε να θέλουμε να έλξουμε από αυτόν με αυτόν τον τρόπο,μπορούμε να δώσουμε τη διεύθυνση URL του απομακρυσμένου αποθετηρίου στην εντολή git pull.
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, είναι ένας απλός τρόπος για να συγχωνεύσουμε έναν απομακρυσμένο κλάδο χωρίς να χρειάζεται να προσθέσουμε ένα απομακρυσμένο αποθετήριο.
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.
Αν έχουμε δημιουργήσει έναν κλάδο για να παρακολουθούμε έναν απομακρυσμένα κλάδο(περισσότερες λεπτομέρειες για αυτό στο επόμενο κεφάλαιο,Διακλαδώσεις στο Git), μπορούμε να χρησιμοποιήσουμε την εντολή git pull.
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 να επιθεωρούν και να απορρίπτουν όταν συγχωνεύσουν μια υποβολή που δεν φέρει αξιόπιστη υπογραφή GPG με την εντολή--verify-signatures.
It also shows you which remote branches on the server you don't yet have, which remote branches you have that have been removed from the server, andmultiple branches that are automatically merged when you run git pull.
Επίσης μας δείχνει ποιους απομακρυσμένους κλάδους του διακομιστή δεν έχουμε ακόμα, τους απομακρυσμένους κλάδους που έχουμε, αλλάέχουν αφαιρεθεί από τον διακομιστή, καθώς και τους κλάδους που θα συγχωνευτούν αυτόματα αν εκτελέσουμε την εντολή git pull.
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.
It also shows you which remote branches on the server you don't yet have, which remote branches you have that have been removed from the server, andmultiple local branches that are able to merge automatically with their remote-tracking branch when you run git pull.
Επίσης μας δείχνει ποιους απομακρυσμένους κλάδους του διακομιστή δεν έχουμε ακόμα,τους απομακρυσμένους κλάδους που έχουμε, αλλά έχουν αφαιρεθεί από τον διακομιστή, καθώς και τους κλάδους που θα συγχωνευτούν αυτόματα αν εκτελέσουμε την εντολή git pull.
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 αυτόματα γνωρίζει από ποιον διακομιστή να ανακτήσει και σε ποιον κλάδο να συγχωνεύσει.
The git pull command is basically a combination of the git fetch and git merge commands, where Git will fetch from the remote you specify and then immediately try to merge it into the branch you're on.
Η εντολή git pull είναι βασικά ένας συνδυασμός των εντολών git fetch και git merge, στον οποίο το Git θα ανακτήσει από το απομακρυσμένο σημείο που καθορίζουμε και στη συνέχεια θα προσπαθήσει αμέσως να το συγχωνεύσει στον κλάδο στον οποίο βρισκόμαστε.
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 είναι συχνά ευκολότερη από ό, τι ο συνεργάτης να ωθήσει σε έναν απομακρυσμένο διακομιστή και εμείς να ανακτήσουμε από αυτόν.
Once the code is in a place you like and want to merge it in, you can either pull the code down and merge it locally,either with the git pull syntax we saw earlier, or by adding the fork as a remote and fetching and merging.
Μόλις ο κώδικας βρίσκεται σε μία κατάσταση που μας αρέσει και θέλουμε να τον συγχωνεύσουμε, μπορούμε είτε να έλξουμε τον κώδικα και να τον συγχωνεύσουμε τοπικά,είτε με τη σύνταξη git pull που είδαμε προηγουμένως, είτε προσθέτοντας τη διχάλα ως απομακρυσμένο αποθετήριο και ανακτώντας και συγχωνεύοντας.
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 θα αναζητήσει τον διακομιστή και κλάδο τον οποίο παρακολουθεί ο τρέχων κλάδος μας, θα ανακτήσει από τον διακομιστή και θα προσπαθήσει να συγχωνεύσει σε αυτόν τον απομακρυσμένο κλάδο.
Now, you can add content to Git and pull it back out again.
Τώρα, μπορούμε να προσθέσουμε περιεχόμενο στο Git και να το τραβήξουμε πίσω ξανά.
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 και δεν μπορεί να ανοίξει ένα κέλυφος στο μηχάνημα.
Results: 22, Time: 0.0322

Word-for-word translation

Top dictionary queries

English - Greek