JIYIK CN >

Current Location:Home > Learning >

All

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

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

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

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

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

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

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

Scan to Read All Tech Tutorials

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

Hottest

Tags

Scan the Code
Easier Access Tutorial