# Save changes to GitHub ## Prepare the GeoNode fork - Go to GitHub [`https://github.com/GeoNode/geonode`](https://github.com/GeoNode/geonode) and select the correct version/branch linked to the `geonode-project` ```shell cat requirements.txt # -e git+https://github.com/GeoNode/geonode.git@4.1.x#egg=GeoNode ``` - Click on the `Fork` button and select the target `repository`; make sure you **uncheck** the `Copy the master branch only` option! ![image](img/133079530-5d34ab88-73ab-4db8-a119-539d0aa90242.png) - Wait for the process to finish. When it is completed, you will be able to see GeoNode in your own `repository` with the same branches and the same commits as `upstream` ![image](img/133079926-15e9dedb-6809-4a78-9ee2-ea930ac1dbfb.png) ### Add the Fork and Branch to the Code - Click on the `Code` dropdown and copy the new `fork URL` ![image](img/133080180-f4127cfe-3ee6-4153-97c9-15c3faadaa6e.png) - Go back to the shell and navigate to ```shell cd /opt/geonode ``` - Type the following commands ```shell # Add the new GitHub remote address git remote add <-- e.g.: git remote add afabiani https://github.com/afabiani/geonode.git # Update the .git references git fetch --all # Create a new branch git checkout -b geonode_training_4x # Double check you switched to the correct branch git branch 4.1.x * geonode_training_4x # Push the new branch to your fork git push geonode_training_4x ``` ![image](img/133082197-eccaadf5-49d6-47c9-a5fd-00061287990f.png) ### Generate a Push Token - GitHub will ask you to provide a `user/password` to perform `pushes/commits`, but it will force you to create a `token` - To create (or refresh) a `token`, go to `settings` ![image](img/133082730-f7addd68-fe8b-4b86-9f0b-bfa40eb916a7.png) - Click on `Developer Settings` ![image](img/133083004-53b1392c-22c5-4eaf-b98d-d16aeeac2db6.png) - Generate a new `token` ![image](img/133083825-9e5f942f-80fc-45a8-afe7-cbd008cbf449.png) ![image](img/133083825-9e5f942f-80fc-45a8-afe7-cbd008cbf449-2.png) - Provide a `name` and `expiration date`. Select the `privileges`. The ones below will allow you to push commits to the repository ![image](img/133084043-609f2567-b770-49bd-aa46-e21ac873f6eb.png) - Copy the new `token` and store it somewhere. Otherwise, you will need to refresh it ![image](img/133084221-e1b1f69f-df7b-45c3-a726-37027ffc0386.png) ### Commit the Changes to GitHub - Check the repository status ```shell cd /opt/geonode git status On branch geonode_training_4x Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git restore ..." to discard changes in working directory) modified: geonode/base/api/serializers.py modified: geonode/base/forms.py modified: geonode/base/models.py Untracked files: (use "git add ..." to include in what will be committed) geonode/base/migrations/0061_resourcebase_custom_md.py geonode/base/migrations/0062_auto_20210910_1445.py no changes added to commit (use "git add" and/or "git commit -a") ``` - Add the `unchecked` files to the `commit` ```shell git add geonode/base/migrations/0061_resourcebase_custom_md.py geonode/base/migrations/0062_auto_20210910_1445.py git status On branch geonode_training_4x Changes to be committed: (use "git restore --staged ..." to unstage) new file: geonode/base/migrations/0061_resourcebase_custom_md.py new file: geonode/base/migrations/0062_auto_20210910_1445.py Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git restore ..." to discard changes in working directory) modified: geonode/base/api/serializers.py modified: geonode/base/forms.py modified: geonode/base/models.py ``` - Create a `commit` and `push` the changes ```shell git commit -a -m " - Added a custom_md field to the GeoNode ResourceBase metadata" ``` ```shell git status On branch geonode_training_4x nothing to commit, working tree clean ``` ```shell git log commit b359f1c49a1196727a6af9fa916cb11b6d28dbdd (HEAD -> geonode_training_4x) Author: afabiani Date: Mon Sep 13 14:24:52 2021 +0100 - Added a custom_md field to the GeoNode ResourceBase metadata commit 911a0f14eb7204c622c807ba877b4a2dce3e3caa (afabiani/geonode_training_4x, 4.1.x) Author: Toni Date: Tue Aug 31 17:57:04 2021 +0200 added jcaceres85 (cherry picked from commit 5553d1882718d38c742e6e4a86bf1ad51f14fb15) # Conflicts: # .clabot [...] ``` - Push the changes to the remote repository in the format ```shell git push geonode_training_4x ``` ### Create a new repository for the GeoNode project The steps are similar to the ones above, except that this time we have to create a **brand new repository** from scratch instead of **forking** an existing one. - Initialize the working directory as a _git repository_ ```shell cd /opt/geonode-project/my_geonode git init ``` - Create a new repository on GitHub - Go to `https://github.com/?tab=repositories` (e.g. `https://github.com/afabiani?tab=repositories`), and create a new `repository` ![image](img/133092826-17a6a932-7765-4f8c-8b17-5a4d49124f5a.png) - Provide a name ![image](img/133092987-bfe3a8d6-ac1f-43b3-91ce-314730d9aa9a.png) - Copy the link ![image](img/133093132-ee0a9415-917b-4b38-b00e-a7888882f1f3.png) - Add the `repository` to the `geonode-project` ```shell git remote add https://github.com//my_geonode.git <-- e.g.: git remote add afabiani https://github.com/afabiani/my_geonode.git # Update the refs git fetch --all # Create a new branch git checkout -b main # Check the status of the local files and add all of them to the commit git status git add -A git status # Create a new commit along with a message git commit -a -m " - My GeoNode" # Finally, push to the repository git push afabiani main ``` ![image](img/133094720-a3bdc7e2-9e9e-4fa4-89cf-485abd3062b9.png) ### Link `geonode-project` to the Correct GeoNode Distribution - Edit the `geonode-project` dependency file ```shell cd /opt/geonode-project/my_geonode ``` ```shell vim requirements.txt ``` ![image](img/133095771-73e74652-3155-4749-89c1-15d7f2cfd03e.png) ```diff diff --git a/requirements.txt b/requirements.txt index d4b80df..7700b59 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1 @@ -# -e git+https://github.com/GeoNode/geonode.git@4.1.x#egg=GeoNode -GeoNode==4.0 \ No newline at end of file +-e git+https://github.com/afabiani/geonode.git@geonode_training_4x#egg=GeoNode ``` - Commit and push the changes to the remote repository ```shell git status On branch main Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git restore ..." to discard changes in working directory) modified: requirements.txt no changes added to commit (use "git add" and/or "git commit -a") ``` ```shell git commit -m " - Link my_geonode to the correct GeoNode dist" requirements.txt [main 7e62c60] - Link my_geonode to the correct GeoNode dist 1 file changed, 1 insertion(+), 2 deletions(-) ``` ```shell git push afabiani main Enumerating objects: 5, done. Counting objects: 100% (5/5), done. Delta compression using up to 2 threads Compressing objects: 100% (3/3), done. Writing objects: 100% (3/3), 362 bytes | 362.00 KiB/s, done. Total 3 (delta 1), reused 0 (delta 0) remote: Resolving deltas: 100% (1/1), completed with 1 local object. To https://github.com/afabiani/my_geonode.git a40f891..7e62c60 main -> main ``` #### [Next Section: Add an App with APIs to geonode-project](070_GEONODE_PROJ_APP.md)