迹忆客 EN >

所有文章

Find deleted files in the commit history of a Git project

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Tracking command history in Git

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Using Git Rebase from the Command Line

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Git Rebase Origin/Branch vs. Git Rebase Origin Branch

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Rebase to a specific commit in Git

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

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

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Linking to an existing GitHub repository

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Git synchronizes branches with Master

发布时间:2025/03/27 作者:JIYIK 分类:Git

Git is a well-organized distributed version control system that can be very effective in managing source code in a distributed team of developers. When different developers are working on different product features, once they have completed...

查看全文

Setting up a username and password in Git

发布时间:2025/03/27 作者:JIYIK 分类:Git

Setting up a username and password in Git

This article demonstrates the steps to set up a GitHub username and password in Linux to avoid having to authenticate for every GitHub action. Set up your username and password in Git (GitHub/GitLab) To set up your GitHub username and passw...

查看全文

Deleting commits from a remote repository in Git

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Ignore Node_modules folder

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Add file entries to the gitignore file in Git

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Ignore files globally in Git

发布时间:2025/03/27 作者:JIYIK 分类: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...

查看全文

Un-stage files in Git

发布时间:2025/03/27 作者:JIYIK 分类:Git

In Git, the location where we add files to track a particular branch is called a commit 缓存区 or branch 索引区 . It is a unique way of organizing files and preparing them for commits. But sometimes, we want to pull back files from th...

查看全文

Configure Git credentials to invoke password and username

发布时间:2025/03/27 作者:JIYIK 分类:Git

This article outlines the process of configuring Git to call the git pull and git push commands with your password and username. If you use HTTP(S) authentication, Git will always prompt you for your password when pushing or pulling. Config...

查看全文

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

热门文章

热门标签

扫码一下
查看教程更方便