Change language
This commit is contained in:
parent
8a8235f8d7
commit
7bc9e5a47b
1 changed files with 4 additions and 4 deletions
|
@ -43,16 +43,16 @@ To double check, run `git remote -v` and verify that you can fetch from `origin
|
||||||
|
|
||||||
To add it you can do the following:
|
To add it you can do the following:
|
||||||
|
|
||||||
```bash
|
```terminal
|
||||||
$ git remote add upstream https://github.com/{{ site.repository }}.git
|
git remote add upstream https://github.com/{{ site.repository }}.git
|
||||||
```
|
```
|
||||||
|
|
||||||
### Pull Down Updates
|
### Pull Down Updates
|
||||||
|
|
||||||
Now you can pull any commits made to theme's `master` branch with:
|
Now you can pull any commits made to theme's `master` branch with:
|
||||||
|
|
||||||
```bash
|
```terminal
|
||||||
$ git pull upstream master
|
git pull upstream master
|
||||||
```
|
```
|
||||||
|
|
||||||
Depending on the amount of customizations you've made after forking, there's likely to be merge conflicts. Work through any conflicting files Git flags, staging the changes you wish to keep, and then commit them.
|
Depending on the amount of customizations you've made after forking, there's likely to be merge conflicts. Work through any conflicting files Git flags, staging the changes you wish to keep, and then commit them.
|
||||||
|
|
Loading…
Reference in a new issue