git

Git share
Cheat Sheet

Git Cheat Sheet

Bob Reselman

Learn Git commands for working with repositories, branches, files, resolving merge conflicts, and more.

Git feature icon
Article

How to ignore files in Git without .gitignore

Heiko Rupp

Learn how to prevent accidental file check-ins in Git without the limitations of .gitignore, which only works well with files common to all collaborators.

Article Thumbnail
Article

PHP 7.2, Node.js 10, NGINX 1.14 and others now GA for RHEL

Mike Guerette

We are pleased to announce general availability Red Hat Software Collections 3.2, which adds these components to Red Hat Enterprise Linux 7 : PHP 7.2 Varnish Cache 6.0 MySQL 8.0 NGINX 1.14 Node.js 10 Git 2.18 Update of Apache HTTP server 2.4 These versions are available on Red Hat Enterprise Linux 7 (Devtools or RHSCL channel) for x86_64, s390x, aarch64, and ppc64le. Read more details about each component in the "New Components details" section. About Red Hat Software Collections Twice...

Redis - HAProxy Example
Article

How To Setup A Redis Server Cluster on Red Hat

David Kittell

So, you’ve been told you need to build a Redis Server Cluster. First, if you don’t know what Redis is you are probably thinking, “What is this weird named thing and what do I need to do”. This guide will walk you through both in a way that will hopefully be easy to follow and be easy to repeat in the future. While you can have more than three servers in a Redis cluster for the sake of simplicity, we...

Using API keys securely in your OpenShift microservices and applications
Article

The CoolStore Microservices Example: DevOps and OpenShift

Alessandro Arrichiello

An introduction to microservices through a complete example Today I want to talk about the demo we presented @ OpenShift Container Platform Roadshow in Milan & Rome last week. The demo was based on JBoss team's great work available on this repo: https://github.com/jbossdemocentral/coolstore-microservice In the next few paragraphs, I'll describe in deep detail the microservices CoolStore example and how we used it for creating a great and useful example of DevOps practices. We made some edits to the original project...

RedHat Shadowman Logo
Article

Red Hat Software Collections 2.3 now beta

Mike Guerette

Today, Red Hat announced the beta availability of Red Hat Software Collections 2.3 , Red Hat’s newest installment of open source web development tools, dynamic languages, and databases. Delivered on a separate lifecycle from Red Hat Enterprise Linux with a more frequent release cadence, Red Hat Software Collections bridges developer agility and production stability by helping to accelerate the creation of modern applications that can then be more confidently deployed into production. New additions to Red Hat Software Collections 2.3...

Article Thumbnail
Article

DevNation 2016: Tim Pettersen on "Tracking huge files with Git LFS"

Lincoln Baxter III

Tracking huge files with Git LFS - DevNation sneak peek is a behind-the-scenes preview of sessions and information that will take place at DevNation 2016. Sign up for DevNation at www.devnation.org. Learn more. Code more. Share more. Join the Nation.

Article Thumbnail
Article

Continuous Integration and Deployment for Red Hat Mobile Cloud Applications using Circle CI

Evan Shortiss

In today's fast paced world of business, delivering quickly is a top priority. Doing so is difficult, however, if you lack confidence in your codebase or rely on error prone deployment processes. Continuous integration enables development teams to automatically run test cases prior to merging code into a stable branch, while continuous deployment leverages automation to provide more reliable, faster deployments of that code. Red Hat Mobile Application Platform supports an agile approach to developing, integrating, and deploying enterprise mobile...

Article Thumbnail
Article

Eclipse EGit for git repo management

Leo Ufimtsev

Eclipse EGit plugin allows one to perform most every day git operations through the gui. (e.g commit with a sign-off/gerrit ID. View history, hard-reset, difference comparisons, Stashing, branching, etc.. ) The main advantage is that it makes some operations faster than through the command line, (e.g one doesn't have to type in file names or copy commit-id's). Egit is only a thin layer on top of git itself. So it does the same git commands underneath. Compatibility Linux/Windows/Mac. Already available...

Article Thumbnail
Article

Red Hat Developer Toolset 2.1 now generally available

Mike Guerette

Red Hat is pleased to announce the general availability of Red Hat Developer Toolset 2.1. This latest version bridges development agility with production stability by delivering the latest stable versions of essential open development tools to enhance developer productivity and improve deployment times. Red Hat Developer Toolset 2.1 introduces a new tool to its content set – Git 1.8.4 – and updates key packages to help developers deliver new applications and functionality faster. Red Hat Developer Toolset enables C and...

Article Thumbnail
Article

Separating IDE workspaces from code repositories

Romain Pelisse

As I've been using Git , SVN (with git-svn) and Hg for quite a long time now, I've adapted my way to handle the local repositories created with those tools. Especially, I quickly found out that it is quite crucial to separate those repositories from your IDE workspaces. Some explanation of why and how are in this entry. (Photo credit by motjetom ) Eclipse workspaces To understand why I wished to write about this, one has to know that many...