When working with Git, it is quite common for developers to create tags in order to have reference points in your development. Tags are created in order to have references…
Software Engineering
-
-
When working with Git, it is quite common for developers to add all the files to your index in order to prepare them for commit. However, in some cases, you…
-
When working with Git, it is quite usual to accumulate many different branches for the different features we are working on. However, when merged with our master branch, you may…
-
When working with Git, you may want to include some specific changes into your current branch. You may want for example to introduce a specific commit located on another branch…
-
When working with Git, you may want to add some new lines to your gitignore files. However, when listing the files to be committed in your staging area, you realize…
-
On Git, tags are often used in order to tag specific commits that may be more important than others. Tags may be used in order to bookmark certain events :…
-
The git stash command is probably one of the most powerful commands in Git. Git stash is used in order to save all the changes done to the current working…
-
When cloning a Git repository or creating new feature branches, you will have to set upstream branches in order to work properly. But what are upstream branches? Upstream branches are…
-
As a GitHub user, you may want to add and setup SSH keys to your repositories in order for them to be easily accessible. SSH keys are one of the…
-
Git is by far one of the most popular version control system available for developers. Created in 2005 by Linus Torvalds, the creator of the Linux operating system, Git is…