oh-my-git/levels/it_IT/workflows/pr
2021-09-14 18:06:29 +02:00

25 lines
574 B
Text

title = Clonare un repo
cards = clone commit-auto reset-hard checkout file-new branch
[description]
Il tuo amico ha un problema! Clona il repo, crea una branch chiamata "solution" e aggiusta il problema in qulla branch. Quando sei pronto crea una "Pull Request" usando `git tag pr`.
[setup]
rm -rf .git
[setup friend]
echo "2 + 3 = " > file
git add .
git commit -m "Commit iniziale"
[actions friend]
git ls-remote yours | grep pr && git fetch yours && git merge yours/solution
git show main:file | grep 5 && hint "Grazie!"
[win friend]
git show main:file | grep 5