DEV Community

Discussion on: Contributing to a Go open source repository

Collapse
 
drainuzzo profile image
Simone

Thanks for this guide, what are git commands to replicate the 'Compare & pull request' button on Github?

Collapse
 
rafaquelhodev profile image
rafaquelhodev

Hi Simone, basically you have to send your local changes to GitHub. So, go to the folder you've cloned the project (/home/forked_bubbletea in the example) and type the commands in the terminal:

git add .
git push
Enter fullscreen mode Exit fullscreen mode