The use of Git Gui + About SSH protocol and cloning corresponding file code + IDEA integration with Git, etc.

Table of Contents 1. Use of Git graphical interface 1.1 Preparation 1.2 Use of Git graphical interface 1.2.1 File code cloning 1.2.2 Check the effect of file GIt management 1.2.3 Git Gui page details illustration 1.2.4 Git Gui function demonstration effect (1) Temporary storage (2) Submission and comments (3) Push remote push 2. SSH protocol […]

Python cloning and full screenshot of web page

It is applicable to both linux and windows. If it is useful, please like it~ Install Python3.11 Update: It can also run normally on Python3.6. cd /root wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tgz tar -xzf Python-3.11.0.tgz yum -y install gcc zlib zlib-devel libffi libffi-devel yum install readline-devel yum install openssl-devel openssl11 openssl11-devel export CFLAGS=$(pkg-config –cflags openssl11) export LDFLAGS=$(pkg-config –libs […]

SpringBoot SerializationUtils cloning (deserialization) class loader inconsistency problem (ClassCastException)

Problem analysis When using the org.apache.commons.lang.SerializationUtils.clone method in SpringBoot, it was found that a type inconsistency error occurred when the cloned class was forced to the corresponding class. After inspection, it was found that two seemingly identical Class loaders for classes are inconsistent Scene Error message java.lang.ClassCastException: com.tianqiauto.tis.pc.dingdanyupai.po.PrePoint cannot be cast to com.tianqiauto.tis.pc.dingdanyupai.po.PrePoint Detection information […]

Understand Java cloning technology, the difference and implementation of deep copy and shallow copy in one article

What is cloning and why is it used in programming Cloning means creating a copy of an object so that the newly created object is identical in content to the original object. Cloning is one of the commonly used techniques in programming, and it has several important uses and advantages: Copy an object: Use cloning […]

One article to understand Java cloning technology, the difference and implementation of deep copy and shallow copy

What is cloning and why is it used in programming Cloning refers to creating a copy of an object such that the newly created object is identical in content to the original object. In programming, cloning is one of the commonly used techniques, it has the following important uses and advantages: Duplicate Objects: Use cloning […]

Creation, cloning, pushing and pulling of Git remote warehouse

Article directory 1 Introduction 2. Creation of remote warehouse 3. Cloning of remote warehouse 3.1 Cloning using HTTPS 3.2 Cloning using SSH 4. Push from remote warehouse 5. Pulling from the remote warehouse 1. Preface In the previous article, I explained some basic concepts and commonly used commands of Git. It’s time to do a […]