JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM >

All

Making reports in Git

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

Git is considered as the most demanding and productive version control system for every software developer and team. We can also say that it is built for data integrity and speed and supports distributed non-linear workflows in a group. As...

Full

Discarding changes in Git

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

No matter how proficient you are in programming, there is no guarantee that your code will work correctly on the first try. Fortunately, Git has options that allow us to discard or undo any changes in the code repository that are no longer...

Full

Un-stage files in Git

Publish Date:2025/03/27 Author:JIYIK Category: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...

Full

Setting up a username and password in Git

Publish Date:2025/03/27 Author:JIYIK Category: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...

Full

Git synchronizes branches with Master

Publish Date:2025/03/27 Author:JIYIK Category: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...

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

Undoing rm in Git

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

In Git, the term rm is git remove an alias for the command. So it is used to remove a single file or a bunch of files from the repository. git rm The main functionality of in Git is to remove tracked files using Git index. However, git rm i...

Full

How to use Docker to image a Node.js web application

Publish Date:2025/03/26 Author:JIYIK Category:Docker

How to use Docker to image a Node.js web application

Docker is a containerization platform that simplifies the packaging and execution of applications. Containers run as independent processes with their own file systems, but share the kernel of their host machine. Docker has attracted much at...

Full

Docker deploys nginx php application

Publish Date:2025/03/26 Author:JIYIK Category:Docker

I'm learning docker recently. I'm learning by building an nginx+php development environment example. Here I record the build process. First, give a docker-compose.yml deployment configuration file version: '3' services: nginx: container_nam...

Full

The difference between Git pull and Git clone

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

This tutorial will discuss the difference between the git clone and commands. git pull git pull Using commands in Git We use git pull the command to get updates from the remote to the local. This command will update the files in the local r...

Full

Show conflicting files in Git

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

This article discusses the simplest and cleanest way to list conflicting files in Git. We can use git status the command, but it is cumbersome, especially when we have a large number of non-conflicting files. A simpler and more concise way...

Full

Staging deleted files in Git

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

This article discusses the necessary steps to stage deleted files in Git. We know that the rm command can delete a file without removing it from the working directory. So, how do we stage the deleted files for commit? Staging deleted files...

Full

Scan to Read All Tech Tutorials

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

Hottest

Tags

Scan the Code
Easier Access Tutorial