This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/posts/data/updating-to-latest-git-ubuntu.md
2023-03-11 21:29:58 -08:00

13 lines
479 B
Markdown

---
title: Updating to the latest version of git on Ubuntu
date: '2017-08-13'
draft: false
tags: ['development', 'git', 'linux', 'ubuntu']
---
If you're using git on Ubuntu, the version distributed via apt may not be the newest version of git (I use git to deploy changes on all of the sites I manage).<!-- excerpt --> You can install the latest stable version of git provided by the maintainers as follows:
```
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
```