Open command prompt or terminal Let’s create a project directory mkdir pythonapp Let’s get inside the project directory cd pythonapp Now, let’s read a sample file echo “this is a Pythonapp” > app.py And now, let’s initialize local git repository git init To checking what’s being tracked by git git …
Remove old git sudo yum -y remove git sudo yum -y remove git-* Add End Point CentOS 7 repo sudo yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm Once repository is added, install Git 2.x on CentOS 7: sudo yum install git Check git version after installing git2u-all package git –version
[vc_row][vc_column][vc_tta_accordion][vc_tta_section title=”1. What is your understanding of Azure DevOps?” tab_id=”1643321237542-13f508dd-6e82″][vc_column_text]Although it might seem like a simple introductory question in an interview of any stage, interviewers will often ask this to gauge what you actually understand about DevOps as opposed to how well you’ve learnt a definition of it. At its most basic, DevOps is …
Login to dev.azure.com Select your Project Then select Repos > New repository Enter the repos name and lets not initialize any readme file That’s it this creates your Azure Repos and now with git remote you can push code to this repo
To get Ansible for CentOS 7, first ensure that the CentOS 7 EPEL repository is installed: sudo yum install epel-release Once the repository is installed, install Ansible with yum: sudo yum install ansible
Query a public dataset In the left pane, click ADD DATA > Explore public datasets. In the search box, type USA Names then press ENTER. Click on the USA Names tile you see in the search results. Click View dataset BigQuery opens in a new browser tab. The project bigquery-public-data …
First lets install some dependency sudo yum install epel-release -y sudo yum-config-manager –enable epel sudo yum install java-1.8.0-openjdk-devel Jenkins package is not available in the default CentOS and RHEL repositories. So we need to add jenkins repository using the beneath commands. curl –silent –location http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo | sudo tee /etc/yum.repos.d/jenkins.repo sudo …
Install Jenkins Create EC2 instance with Amazon Linux 2 AMI We will be using open java for our demo, Get latest version from http://openjdk.java.net/install/ yum -y install java-1.8.0-openjdk Lets install java and set the java home java -version find /usr/lib/jvm/java-1.8* | head -n 3 #JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.191.b12-1.el7_6.x86_64 export JAVA_HOME PATH=$PATH:$JAVA_HOME # To …