Long overdue first commit with content
This commit is contained in:
parent
f63ce5bdd8
commit
6cc9d8c72a
92 changed files with 2031 additions and 97 deletions
13
content/en/blog/commands/git-import-commits.md
Normal file
13
content/en/blog/commands/git-import-commits.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: "Import commits from one git repo to another"
|
||||
linkTitle: "Import commits from one git repo to another"
|
||||
date: 2018-09-25
|
||||
description: >
|
||||
Import commits from one git repo to another
|
||||
---
|
||||
|
||||
This imports commits from a repo in the `../masterfiles` folder and applies them to the repository inside the current folder :
|
||||
{{< highlight sh >}}
|
||||
(cd ../masterfiles/; git format-patch –stdout origin/master) | git am
|
||||
{{< /highlight >}}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue