Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Gatsby-Lee/moon-rapi
https://github.com/Gatsby-Lee/moon-rapi
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/Gatsby-Lee/moon-rapi
- Owner: Gatsby-Lee
- License: gpl-3.0
- Created: 2023-09-27T07:33:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-05T07:12:37.000Z (5 months ago)
- Last Synced: 2024-08-05T08:37:59.546Z (5 months ago)
- Language: Shell
- Size: 135 KB
- Stars: 7
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
All about Raspberry Pi
======================Raspberry Pi OS
---------------.. code-block:: bash
# To enable VNC / SSH
sudo raspi-configHow to Create Private Repo with this repo as upstream?
------------------------------------------------------.. code-block:: bash
# 1. create private empty repo on github
# 2. clone and push to new empty repo
git clone --bare https://github.com/Gatsby-Lee/moon-rapi.git
cd moon-rapi.git
# push to https or ssh
git push --mirror https://github.com//moon-rapi-private
cd ..
rm -rf moon-rapi.git# 3. clone
git clone https://github.com//moon-rapi-private
cd moon-rapi-private
git remote add upstream https://github.com/Gatsby-Lee/moon-rapi.git
git pull upstream main # This will creates a merge commit
git push origin main # So, push to the merged commit to private if you'd like to merge it into your private repo.ref: https://stackoverflow.com/questions/10065526/github-how-to-make-a-fork-of-public-repository-private