Git Tutorial

Git is a broadly used distributed model management and supply code administration system. It successfully tracks adjustments to supply code, enabling easy branching, merging, and versioning. This Git tutorial is designed for newbies and professionals. It covers a variety of matters, from elementary to superior ideas of Git and GitHub. The tutorial consists of directions on downloading and putting in Git, creating new repositories, using Git Bash, managing Git stash, downloading Git, executing Git instructions, working with Git branches, and so on. and additionally, you will discover extra superior matters corresponding to resolving conflicts, engaged on Bitbucket and GitHub, and so on. This Git Tutorial will present a complete understanding…

Read More

Introduction to Git Branch

Branching means diverging from the mainline and continue to work separately without messing with the mainline. Nearly every VCS has some form of branch support. In Git, a branch is simply a reference to the commit, where the following commits will be attached. Git vs SVN: In recent years, the use of git has risen tremendously….

Read More

What is Git Commit

What’s Git Commit Git is a robust model management system that has turn into the de facto customary for builders worldwide. Whether or not you are a seasoned coder or simply beginning on this planet of programming, understanding Git and its core ideas is crucial. One such basic idea is the “Git Commit.” On this article, we’ll delve into the world of Git Commits, what they’re, why they’re essential, methods to make them, and finest practices for writing significant commit messages. Introduction to Git Commit Git is famend for its skill to trace adjustments in…

Read More

Git Merge και Merge Conflict

Ας συζητήσουμε τι συγχώνευση στο git. Συγχώνευση σημαίνει συνδυασμός αλλαγών από έναν κλάδο σε άλλο κλάδο. Τώρα ας δούμε πώς μπορούμε να εκτελέσουμε τη συγχώνευση εδώ, μπορούμε να δούμε ότι μπορούμε να δούμε ένα αρχείο καταγραφής στον κύριο κλάδο. Συγχώνευση Αλλαγών κούτσουρα στο κύριο υποκατάστημα Τώρα ας δούμε τα αρχεία καταγραφής στον κλάδο dev και…

Read More

How to use GIT in Ubuntu ? (Part -2)

In the previous article, we learnt how to use basic GIT. In this article we would try to learn some more basic concepts like branching and merging.  SOME MORE BASIC COMMANDS: Some of the very helpful commands while using git are: git Type this in the terminal and you’ll see a bunch of commonly used GIT commands…

Read More

List of useful Github Commands

Github is a distributed version control system that helps to manage the repositories. These are a list of few commands that you can use frequently on Github(git bash) 1.git help Take help from github help section for different commands and other errors. 2.git config To set the basic configurations on github like your name and email….

Read More

Git-Checkout And Merge

Σε αυτό το άρθρο, θα καλύψουμε κυρίως τις βασικές εντολές git που είναι χρήσιμες στη διακλάδωση και τη συγχώνευση. Αν θέλετε να μάθετε τι είναι το git branch, διαβάστε αυτό το άρθρο: Git-Introduction to Branch. και Ένας απόλυτος οδηγός για το Git και το Github. Αυτά τα δύο άρθρα θα σας βοηθήσουν να κατανοήσετε μερικές από τις…

Read More

Git – git-prune

Το Git prune είναι μια εντολή που διαγράφει όλα τα αρχεία που δεν είναι προσβάσιμα από τον τρέχοντα κλάδο. Η εντολή prune είναι χρήσιμη όταν έχετε πολλά αρχεία στον κατάλογο εργασίας σας που δεν θέλετε να κρατήσετε. Η κύρια χρήση του git prune είναι να καθαρίσετε τον κατάλογο εργασίας σας αφού ολοκληρώσετε την εργασία σε…

Read More

Git – Ευρετήριο

Το Git Index μπορεί να οριστεί ως η περιοχή σταδιοποίησης μεταξύ του χώρου εργασίας και του αποθετηρίου. Η κύρια χρήση του Git Index είναι να ρυθμίσετε και να συνδυάσετε όλες τις αλλαγές μαζί πριν τις δεσμεύσετε στο τοπικό σας αποθετήριο. Ας καταλάβουμε τι σημαίνει και τι λειτουργεί αυτός ο εργασιακός χώρος εργασίας και το τοπικό…

Read More