- Home
- Tag: Git
Posts tagged Git
Tag: Git
Matillion ETL 1.61 Release: DataOps and GIT Integration Enhancements

Feed: Matillion. Author: Julie Polito; The Matillion ETL data integration platform continues to get better in Version 1.61! Keep reading for highlights and details in this newest version DataOps enhancements We love supporting our Ops community with new features that help you document, test, and automate your workflows faster than ever!NEW data structure variableWe’ve introduced a brand new variable that lets you predefine and parameterize the structure you want to extract from semistructured data in your workflows. This data structure variable makes it possible to parameterize jobs with variable payloads so they continue running and extracting the right data with no oversight ... Read More
Jedi SAS Tricks: GIT my macros
Feed: SAS Blogs. Author: SAS Jedi. I use macros extensively in my SAS programs, and over the years have accumulated a few that I find quite useful. The integration of GIT and SAS Studio has made it easy to build a re-usable macro library, so I've put some of the more polished macros I've written in a GIT repository to share. You can generate a list of the macro files available with this bit of SAS code (which leverages one of those macros) %let thisMacro=listrepofiles; filename mcode temp; proc http url="https://raw.githubusercontent.com/SASJedi/sas-macros/master/%qlowcase(&thisMacro).sas" out=mcode; run; %include mcode /source2; filename mcode; %&thismacro(?) Running ... Read More
Head First Git
Feed: O'Reilly Media, Inc. Upcoming Titles. Author: O'Reilly Media, Inc.. Book description What will you learn from this book?Many people who use Git rely on "recipes"—basic copy-paste commands—without understanding how this version control system actually works. But what do you do if you find yourself in a tight spot? You can't simply wing it. With this unique hands-on guide, you'll learn valuable ways to use Git in many different situations. Raju Gandhi peels back the layers to reveal the simple yet powerful engine that powers Git, with activities that help you truly understand this crucial tool as you get it ... Read More
New in Matillion ETL Release 1.58 and 1.59: Git – Merge Conflict Resolution

Feed: Matillion. Author: Julie Polito; Want the very best Matillion ETL experience? Each new version of Matillion is better than the last. Make sure you are on the latest version to take advantage of the new features, new components, and improvements. Today, we’re excited to talk about merge conflict resolution in Git, available in Matillion ETL releases 1.58 and 1.59.Within Matillion ETL, customers have the option to use Git to implement source control.As with all forms of source control, managing the changes from a multitude of different sources, possibly changing the same underlying components, is a challenge.Until now, the onus ... Read More
AWS Proton introduces Git management of infrastructure as code templates
Feed: Recent Announcements. AWS Proton now allows customers to sync their Proton templates from a git repository. Platform teams can create AWS Proton templates based on AWS CloudFormation and Terraform templates uploaded to a git repository. AWS Proton is designed to automatically sync and create a new version when changes are made and committed to the git repository. With this new feature, platform and development teams can eliminate manual steps and and reduce the chance for human error. AWS Proton is the first fully managed application deployment service for containers and serverless. Platform teams can use AWS Proton to connect ... Read More
Git: Moving from Master to Main
Feed: R-bloggers. Author: The Jumping Rivers Blog. In June 2020, GitHub announced that is was moving the default branch name from master to the more neutral name, main. GitLab followed suit in a few months later. Tobie Langel makes the salient point on why changing the name is a good thing: So master is not only racist, it’s also a silly name in the first place. The purpose of this post is summarise some of the challenges we faced when moving from master to main, with the goal that if you decide to make the same change, you’ll hopefully avoid ... Read More
Mastering Git and GitHub: the hands-on workshop
Feed: R-bloggers. Author: Mirai Solutions. [This article was first published on Mirai Solutions, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. Learn the basis of version control via an hands-on 3-hours workshop using command line, R, RStudio or a web browser. Have you ever feared to mess up your code, to lose your development or to spend endless time to integrate a collaborator’s work? Then the answer for you is version control. Reference ... Read More
Reverting Git Commits
Feed: R-bloggers. Author: shikokuchuo. [This article was first published on shikokuchuo{net}, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. sha256 1 010e16069f8858640c2bb9af4a2293b720161b71d9d6e1f375c30237ea2b4123 Shikokuchuo Reverting Local Git Commits You have made a commit. You discover an error / something you left out / something new to add straight after the commit. git reset HEAD~ This is a soft reset. Your changes are preserved. The commit is removed from the record. Make the additional changes ... Read More
Zoom talk on “Version control and git for beginners” from the Grenoble (FR) R user group
Feed: R-bloggers. Author: Matthieu Rolland. [This article was first published on R-posts.com, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. The next talk of Grenoble’s R user group will be on May 06, 2021 at 5PM (FR) and is free and open to all:Version control and git for beginners Git is a version control system whose original purpose was to help groups of developers work collaboratively on big software projects. Git manages the ... Read More
This Week in Neo4j – Neo4j & Python, Model Git Commits, Slack to Discord, Open Names Data,

Feed: Neo4j Graph Database Platform. Author: Jennifer Reif. Hello, everyone! In this week’s episode, Madison shows us how to use Neo4j with Python using the Py2neo package and includes steps and template code for recreating her walkthrough. Tom shows us how to model git commits with Neo4j and explains some contrasts between the same use case in graph and relational setups. Alex announces a Neo4j community migration from Slack to Discord to expand more interactive features. EarthlingDavey on Github published an early release repository for OS Open Names data in Neo4j that provides latitude and longitude for a location in ... Read More
Recent Comments