Solve the differential equation
$$xy'' + y' = 0$$
using the Green’s function satisfying the initial condition $y(1) = y'(1)$.
Generally, Green's functions are used to solve nonhomogeneous differential equations, where the solution s of the form $$y=Integral(G(x,t)f(t)dt)$$, where G(x,t) is the Green's function and f(t) is the nonhomogeneous term. so if f(t)=0 then wouldn't Green's function method yield a trivial solution? But this question is given as a homework problem to solve. So is there any method to solve it?
As I have said in the comments, make the substitution $u = y'$ in order to get \begin{align*} xu' + u = 0 & \Longleftrightarrow xu' = - u\\\\ & \Longleftrightarrow \frac{u'}{u} = -\frac{1}{x}\\\\ & \Longleftrightarrow \ln|u| = -\ln(x) + c\\\\ & \Longleftrightarrow |u| = \exp(c)\exp(\ln(x^{-1}))\\\\ & \Longleftrightarrow u = \frac{k_{1}}{x}\\\\ & \Longleftrightarrow y' = \frac{k_{1}}{x}\\\\ & \Longleftrightarrow y = k_{1}\ln(x) + k_{2} \end{align*}
where it has been assumed that $x > 0$.
Hopefully this helps !