The use of Git —8. windows graphical interface management (self study)

” TortoiseGit “as an example. 1. download software. Git:https://git-for-windows.github.io/ TortoiseGit & TortoiseGit-LanguagePack:https://tortoisegit.org/download/ 2. installation configuration steps The specific installation steps can be referred to as: http://unun.in/fenxiang/45.html 3.” more git learning materials. http://git.oschina.net/progit/ http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000 http://www.open-open.com/lib/view/open1328070620202.html http://www.open-open.com/lib/view/open1328069889514.html

SVN – simple user manual

background Two new programmers were added to support the development of a branch because of the project’s need, so you need to create a branch in the original SVN and assign users and permissions to the new commer.         0. Get ready To use SVN on the Window system, we’d better install the 2 software of SVN separately: ServerEnd: VisualSVN Manager   ClientEnd: TortoiseSVN     1. Create new users Here, we operate on SVN’s server machine mountain with the tool Visual SVN Manager. The operation is very simple, as shown in the following figure: After entering the basi...

ARM cross compiler tool chain

Cross-compiler tool chain is a comprehensive development environment composed of compiler, connector and interpreter. Cross-compiler tool chain is mainly composed of binutils, GCC and glibc.    The free version is currently available from three mainstream vendors: GNU, Codesourcery and Linora. 1、aarch64-linux-gnu-gcc:It is a ARM cross compilation tool launched by Linaro company based on GCC. It can be used to cross-compile bare computer programs, u-boot, Linux kernel, filesystem, and App applications in ARM V8 64-bit targets. 2、arm-none-linux-gnueabi-gcc:Codesourcery (now acquired b...

ARM plate transplant udev-126

Download udev-126.tar.xz The download address is: https://mirrors.edge.kernel.org/pub/linux/utils/kernel/hotplug/ Decompress files and compile them #tar -xvf udev-126.tar.xz # cd udev-126 # mkdir build # vim config.sub case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | ar...

Powerful Mac cleaning tools cause you to have to choose.

In general, all operating systems clean up garbage files, so what do you need to do to clean up Apple computer garbage? Xiaobian summed up two ways: first, manual cleaning; two, use special cleaning tools to help clean up. Usually manual cleaning methods often do not achieve the desired effect, can not clean more junk files, so we will choose to clean up tools to solve, the software is now very popular clean mymac cleaning software. CleanmymacKnown as Apple’s very powerful cleaning tool, 90% of Mac users now use this software to clean their computers. It’s easy to understand, so i...

JIRA building and cracking under Linux

Write in front of There are many similar articles on the internet, but on the same road, others may go smoothly and stumble on their own. Record the process of building your own course. Environmental preparation 1,jira7.3The operation is dependent on the Java environment, that is to say, it is necessary to install JDK and if more than 1.8, it is as follows:   View installed version: RPM -qa|grep java* You can choose to have multiple versions of the JDK coexist, and I’m simply rude — uninstalled There are two ways to uninstall, one is normal deletion, the other is strong deletio...

Application of GIT stash

Looking at a bug today, the previous version of a branch is normal, adding a lot of logs to the new branch to find no reason, hoping to go back to the previous version, determine which submission to introduce the problem, but do not want to submit the current changes, also do not want to see the current version of the modification on Git.(with lots of log and debugging information). So, check if Git has provided similar functions and found it.git stashThe command. Continue reading “Application of GIT stash”