© 2023 Hashnode
#version-control
Version control Version control, also known as source control, revision control, or source code management in software engineering, is a type of system in charge of controlling changes to huge web pag…
Anda pernah mengalami hal seperti ini? Atau yang seperti ini? Jika anda menggunakan Git, anda tidak perlu melakukan itu semua.. Git (version control system) dapat mencatat perubahan pada file at…
In the previous articles, I have gone over the process of generating ideas for your games, picking the one for you, refining that idea and planning the development process while using my project as an…
Git Rebasing In this section, we will take a look at git rebasing. Git merge We can merge the master branch into our own branch by the git merge command. This creates a new merge commit, to merge th…
In this section, we will take a look at initializing remote repositories Initialize Remote Repositories We can push code to the remote repositories that are hosted somewhere else and get this code on …
Pre-requisites Understanding of Version Control. Knowledge of basic Git commands i.e. git init, git add, git commit, git status, etc. Knowledge of more complex Git commands i.e. git log, git branch, git merge, git checkout, etc. If you…
What is Git? Git is a distributed version control system that allows developers to maintain a version-controlled repository of their project code base. This provides the ability to track and roll bac…
In this section, we will take a look at git branches Branches Keep the project versioned using the branch A branch is basically a pointer to the last commit If you are working on a feature, you mig…
Git is a Distributed Version Control System and it is a kind of content tracker, it stores all our code changes. Distributed means it has a remote repository which is stored in a server and a local re…
Git is a powerful version control system that allows developers to track changes in their code and collaborate on software projects. In this article, we will explain some of the basic Git commands and…