JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM >

All

Using patch files in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

In this article, we will introduce Git patch files. This article covers the following topics. We use Git patch files to store changes from commits. Patch files will contain data like commit date and message. You can use Git patches to apply...

Full

Comparing local and remote branches in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

Git is a free platform and open source distributed version control system designed to control everything from small to large projects with speed and efficiency. A local branch is one that can be found on a local personal station. It can onl...

Full

Removing commits from a branch in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

When we start working on a large project, we often encounter situations where we have to update, remove or add parts in a branch. If the development time span is long and there are strict deadlines, the maintenance of commit messages can be...

Full

Ignore files globally in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

When working in Git, we sometimes need to ignore files that we don't need or accidentally commit to a remote repository. We can configure Git to ignore those files that we don't want checked into the remote repository. It will ensure that G...

Full

Add file entries to the gitignore file in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

This tutorial will discuss adding file entries to files in Git .gitignore . .gitignore Add a file entry to a file in Git Git tracks changes to all files in the project directory of the Git repository. We may want to disable tracking of spec...

Full

Ignore Node_modules folder

Publish Date:2025/03/27 Author:JIYIK Category:Git

While working on a project, there may be certain folders that you don't want git to track; these can be .env files, node_modules folders, etc. These folders are intended for use only on the local computer and should not be shared with other...

Full

Deleting commits from a remote repository in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

Sometimes when using Git, we realize that a commit was wrong and needs to be removed. The reason may be that the customer does not want to use this feature in the product. Either we introduced a bug, or we need to work on it again because w...

Full

Linking to an existing GitHub repository

Publish Date:2025/03/27 Author:JIYIK Category:Git

This article outlines the steps to link your local repository to a GitHub repository. It is always recommended to link your local repository to an empty GitHub repository. After all, no one wants to merge two different repositories into one...

Full

Set the folder as a Git Repo and push it to the remote

Publish Date:2025/03/27 Author:JIYIK Category:Git

This article shows you how to convert local folders into Git repositories and push them to a remote repository. Git version control and GitHub will provide us with all the tools we need to get the job done. Without further ado, let's get in...

Full

Rebase to a specific commit in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

This article discusses the process of rebasing to a specific commit in Git. We will use a few scenarios to illustrate how this can be achieved. We'll use git rebase --onto the rebase command to rebase a branch to a specific commit. Let's ju...

Full

Git Rebase Origin/Branch vs. Git Rebase Origin Branch

Publish Date:2025/03/27 Author:JIYIK Category:Git

This article discusses the difference between the git rebase origin/branch and git rebase origin branch commands. We use both commands to rebase from a remote, but their actual uses are different, which we will discuss later. Difference bet...

Full

Using Git Rebase from the Command Line

Publish Date:2025/03/27 Author:JIYIK Category:Git

This article will discuss using the git rebase command effectively . The git rebase command allows us to change a range of commits and modify the commit history in our repository. We can edit, reorder, or squash commits using the git rebase...

Full

Tracking command history in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

Git is one of those version control systems that keeps a record of the changes made by its developers. Through these records, we can track various earlier commits, which teammates made what changes at what time, understand the bugs that wer...

Full

Find deleted files in the commit history of a Git project

Publish Date:2025/03/27 Author:JIYIK Category:Git

This article discusses finding deleted files in the commit history of a project. This is handy when you want to recover a file you deleted in a project. Without further ado, let’s jump right in. Steps to find and restore deleted files in...

Full

Revert a file to a previous commit in Git

Publish Date:2025/03/27 Author:JIYIK Category:Git

Git is a version control system. We use it to track changes made to files in a project directory. In a collaborative development environment, many team members often work on the same files and make changes to them. We often face a situation...

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial