-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
How to use without forking README update
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,27 @@ docker run --rm -it --entrypoint /workspace/system/bin/dev-server-entrypoint.sh | |
|
||
Your local php site will be running at **http://localhost:8001** with instant updates on page refresh, as PHP does. | ||
|
||
## How to use this repo without forking | ||
|
||
* Create your empty repo on GitHub with nothing in it, nothing. | ||
* Clone this repo to your local. | ||
* `cd` into this repo and run | ||
``` | ||
git remote set-url origin [email protected]:Your-Username/your-new-repo.git | ||
git push | ||
git remote add upstream [email protected]:atas/ssg.git | ||
``` | ||
|
||
Now use your repo as it is. If you want to update your repo from the original repo, run | ||
``` | ||
git checkout -b updates-from-upstream | ||
git fetch upstream | ||
git merge upstream/main | ||
git push | ||
``` | ||
|
||
Then create a pull request from `updates-from-upstream` branch to `main` branch and go through it. | ||
|
||
## Future Plans | ||
|
||
### Caching Markdown files for performance in local env | ||
|