JIYIK CN >

Current Location:Home > Learning >

All

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

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

Recursively add files and folders in Git

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

Sometimes, we come across a situation where we have to adjust some files, folders, and subfolders that already exist in Git. A part of a nested folder system has to be added remotely to Git. This article will discuss how to use commands to...

Full

Git add folder

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

git add Used to add specific folders and files. This tutorial will handle it in a modern way git add folder . git add Add all or specific folders and files to staging in Git using Use the following syntax to add files: git add file Use the...

Full

Different ways to add files to staging with Git

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

While the command git add is probably the most commonly used command for adding files to your stash, other flags may come in handy depending on the situation. This article takes a deep dive into git add the flags you can use with the comman...

Full

Adding files in Git

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

This article will discuss different ways to add files to our repository on Git. In Git, use git add the command to add all files We can git add add all the files without exception using the command as shown below. git add -A -A The -p param...

Full

Running a Docker instance from a Dockerfile

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

Docker containers have undoubtedly become the standard unit for managing software and dependencies in different environments. When using real applications, you must create a docker file before building the container image of the application...

Full

Enforce clean build of images in Docker

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

This article discusses and demonstrates how to enforce clean builds of images in Docker. Building images in Docker We will use a simple Flask application to demonstrate this concept. my-app Create a app.py simple application named in the ho...

Full

Install Docker using Homebrew

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

There is no doubt that Docker containers have revolutionized the way we develop and deploy applications. They provide developers with the ability to package applications and dependencies in an isolated environment. Recently, we've seen wide...

Full

Passing environment variables to containers in Docker

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

This article will introduce how to pass environment variables to containers in Docker. Passing environment variables to containers in Docker using the -e and tags -env We will first see how to create environment variables and pass them to t...

Full

Start a Bash terminal in a new Docker container

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

Docker containers are a standard unit for packaging all the dependencies of an application, allowing us to easily run them in any environment. Containers have become very popular recently, and most developers now rely heavily on containers...

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

Scan to Read All Tech Tutorials

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

Hottest

Tags

Scan the Code
Easier Access Tutorial