posts directory
This commit is contained in:
parent
9e00d9c09e
commit
5c6deac7a2
24 changed files with 0 additions and 0 deletions
14
src/posts/data/updating-to-latest-git-ubuntu.md
Normal file
14
src/posts/data/updating-to-latest-git-ubuntu.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: Updating to the latest version of git on Ubuntu
|
||||
date: '2017-08-13'
|
||||
draft: false
|
||||
tags: ['development', 'git', 'linux', 'ubuntu']
|
||||
summary: 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).
|
||||
---
|
||||
|
||||
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
|
||||
```
|
Reference in a new issue