SVN server construction in Linux environment and integration with intranet penetration to achieve remote connection

Article directory Preface 1. Install SVN service on Ubuntu 2. Modify configuration file 2.1 Modify the svnserve.conf file 2.2 Modify passwd file 2.3 Modify authz file 3. Start the svn service 4. Intranet penetration 4.1 Install cpolar intranet penetration 4.2 Create tunnel mapping local port 5. Test public network access 6. Configure a fixed public […]

Version control system-SVN

SVN Apache Subversion, often abbreviated to SVN, is an open source version control system. Official website: https://subversion.apache.org Information: https://svnbook.red-bean.com, https://www.runoob.com/svn/svn-tutorial.html Download: https://sourceforge.net/projects/win32svn/ Comparison with git SVN (Subversion) and Git are both version control tools, and their functions are to help programmers manage and track code changes. Here are the main differences between the two: Distributed […]

svn deploy server to linux

Table of Contents 1. Install SVN Installation command: Check whether the installation is successful and you can check the version 2. Create the repository directory Create folder: Switch to the changed directory: 3. Create a project Create a project (repository): Modify the configuration file under the project 4. Start the SVN service Close svn command: […]

ubuntu installation configuration svn

Directory Introduction Install SVN startup mode Method 1: Single database svnserve method Method 2: Multi-repository svnserve method SVN creates a repository 1.svn service configuration file svnserve.conf 2. Username and password file passwd 3. Permission configuration file 4. Multi-library operation SVN checkout operation SVN resolves conflicts SVN commit operation SVN version rollback SVN View historical information […]

You can see it when using svn for the first time

Nowadays, general development is collaborative development, so a version control system is used. To put it bluntly, everyone develops a project together, writes different codes separately, and then needs to bring the codes together. Everyone may need the code written by each other, that is Everyone writes a set of code together, which requires a […]

Build SVN server in Linux environment and achieve public network access – cpolar port mapping

Article directory Preface 1. Install SVN service on Ubuntu 2. Modify configuration file 2.1 Modify the svnserve.conf file 2.2 Modify passwd file 2.3 Modify authz file 3. Start the svn service 4. Intranet penetration 4.1 Install cpolar intranet penetration 4.2 Create tunnel mapping local port 5. Test public network access 6. Configure a fixed public […]

Jenkins and svn build automatic code build and release

jenkins installation and configuration 1. Install jenkins 1.yum install java wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat/jenkins.repo rpm –import https://pkg.jenkins.io/redhat/jenkins.io.key 2.yum install jenkins 2. Start jenkins [root@localhost sysconfig]# systemctl start jenkins [root@localhost sysconfig]# java -version openjdk version “1.8.0_181” OpenJDK Runtime Environment (build 1.8.0_181-b13) OpenJDK 64-Bit Server VM (build 25.181-b13, mixed mode) [root@localhost sysconfig]# ss -tnl State Recv-Q Send-Q […]

Installation of Centos virtual machine SVN and using http to access the svn server

1. Check whether the old version of SVN is installedrpm -qa | grep subversion2. Uninstall the old version of SVNyum remove subversion3. Install SVNyum -y install subversion The above 3 steps are all general settings. 4. Create an SVN repository (that is, the warehouse where the project will be stored) mkdir -p /home/svn creates the […]