1.git config which is used to configure user details 2.git init which is used to initialize new git repository 3.git add to send files from working area to staging area 4.git commit to commit your code changes 5.git status displays the state of the working directory and the staging area. 6.git log --oneline display the number of commits 7.git show display a specific or a particular commit code changes by using 4 characters commit id 8.git push to push the code from git to GitHub repository 9.git remote to establish the connection between git to GitHub repository 10.git branch to displays all branch details 11.git branch branch name to create a new branch 12.git checkout switch from one branch to another branch 13.git clone to download the entire repository from GitHub to local repository . that means we create a local copy of a remote repository 14.git pull to download the l...
Server Requirement ... 2CPU & 4GB RAM -instance type t3.medium 30 GB disk space step1: Login AWS Cloud step2: create Linux server step3: Login Linux Server step4: switch to root user (sudo -i) step5: create user (useradd paparao( create password step:6 provide login access nano /etc/ssh/sshd_config step7: restart sshd service service sshd restart step8: provide sudo access visudo and press enter write below statement paparao ALL=(ALL) NOPASSWD: ALL Step9: Install docker software yum install docker -y step10: check the docker docker --version step11: add user into docker group ...
SonarQube Installation & Configuration Steps ================================== Pre-requisites ========= 1.CPU 2core or more -->min 2core CPU is mandatory 2.RAM 4GB or more ---->4GB is mandatory (select t3.medium---->You Get 2CPU & 2GB RAM) 3.Harddisk --30GB ---->30GB is mandatory 4.Java Software ----->java11 or 17 is mandatory go with java 17 5.Operating System---->Amazon Linux I. Create Security Group ================== Step1: Login AWS Step2: Go EC2 Dashboard step3: Select Security Group Step4: Add port number 22 Add port number 9000 Security GroupName:sonarqube II. Launch Instance & Login Instance ==================================== Step1: Go Ec2 Dashboard Step2: Create Server...
Comments
Post a Comment