I found excellent answer https://stackoverflow.com/a/4099805/4632019
I can see differences in file between branches:
$ git diff my_branch..master -- the/file.md
diff --git a/the/file.md b/the/file.md
index 986e16d..13b14d3 100644
--- a/the/file.md
+++ b/the/file.md
@@ -11,7 +11,7 @@ In this step we are going to setup and run
### Create GitHub Account
-1. Create a GitHub account email on [GitHub](https://github.com)
+1. Create a GitHub account email on [GitHub](https://github.com) if you don't already have one.
2. Generate a personal access token (classic) [here](https://docs.github.com/en/authentication/keeping-your-account-an>
Note: After setting up repositories, your username/token will be stored by system keychain. So you will not be require>
@@ -107,11 +107,11 @@ Macbook](./prepare-your-macbook.md#docker).
First, make sure the Docker Desktop is running:
-[Docker Desktop is running](./docker-desktop-is-running.png)
+
Then, ensure the VM has at least 2GB of RAM:
-[Docker Desktop configuration](./docker-desktop-configuration.png)
+
If using Mac with Apple silicon, use Rosetta emulation. Docker Desktop -> Settings -> Features in development -> Use r>
@@ -143,6 +143,8 @@ cd ~/dev/wi-deploy
./script/deploy-local.sh
+NOTICE: If something goes wrong and you want to redeploy your containers with new arguments, then use `--force` flag.
+
### Start Front-End HTTP Proxy
But when I tried to see changes from my branch:
git diff my_branch...master -- the/file.md
I see whole commit from my branch:
diff --git a/the/file.md b/the/file.md
index 2ee0878..986e16d 100644
--- a/the/file.md
+++ b/the/file.md
@@ -9,6 +9,13 @@ In this step we are going to setup and run
## Setup Projects
+### Create GitHub Account
+
+1. Create a GitHub account email on [GitHub](https://github.com)
+2. Generate a personal access token (classic) [here](https://docs.github.com/en/authentication/keeping-your-account-an>
+
+Note: After setting up repositories, your username/token will be stored by system keychain. So you will not be require>
+
There are 3 main git repositories:
- [PlanitarInc/wi-api](https://github.com/PlanitarInc/wi-api)
contains the back-end code.
But I want to see only actual changes. Like on first command, but without second and third patch, eg. ignore my changes, which are already on master:
--- a/the/file.md
+++ b/the/file.md
@@ -11,7 +11,7 @@ In this step we are going to setup and run
### Create GitHub Account
-1. Create a GitHub account email on [GitHub](https://github.com)
+1. Create a GitHub account email on [GitHub](https://github.com) if you don't already have one.
2. Generate a personal access token (classic) [here](https://docs.github.com/en/authentication/keeping-your-account-an>
Note: After setting up repositories, your username/token will be stored by system keychain. So you will not be require>
Is there a command to see such changes?