When working on software projects, it is quite common for developers to add new files to their repositories. In some cases, you may want to change some of your existing…
git
-
-
When using Git, it is quite common for developers to add new files to their repositories during development. Most of the time, files are associated with commits. Developers often start…
-
In Git, branches are commonly used in order to have a development separated from your main workflow. In software engineering teams, it is quite common to have a specific workflow…
-
When working with Git, it is quite common for developers to add many files to their repository, just to realize that they want to delete them later on. Deleting files…
-
As a developer, you are probably pushing your code to your remote origin every day. Git is a decentralized versioning system : even if you make changes locally, you have…
-
On Git, tags are used in order to define commits in your history that may be more important than others. When you are performing a merge commit, right before deploying,…
-
In Git, branches are commonly used in order to develop features independently from the main workflow. Git is a decentralized versioning system : as a consequence, you have local and…
-
When working on a project, you are probably managing many different branches in your repository. As the number of branches grow, you may need to work on different tasks in…
-
If you are familiar with Git, you are probably creating a lot of commits everyday for your projects. If you followed our previous articles on writing Git commit messages, you…
-
As a developer, you are probably using Git as a version control system for your projects. When you are done with your modifications, you probably want to add your files…