We define the greatest common divisor (gcd) of two or more integers, when at least one of them is not zero, is the largest positive integer that divides the numbers without a remainder.
More precisely, given $a, b \in \mathbb{Z}$, their gcd, let us denote it by $d$ is the positive integer such that
- $d|a$ and $d|b$, (where notation $x|y$ means $x$ divides $y$)
- If $d^{'}$ is another positive integer which satisfies 1, that is $d^{'}$ also divides $a$ and $b$, then $d^{'}|d$
Now you want to show that $gcd(a,b)=gcd(a+b,b)$.
So let us apply the definition. Let $\alpha= gcd(a,b)$, we will show that $gcd(a+b,b)=\alpha$.
By definition $\alpha |a$ and $\alpha |b$, it implies that $\alpha |(a+b)$ so first condition is satisfied. You can check the second condition. Hence we have shown that $\alpha=gcd(a+b,b)$