How to push changes from a local project to a GitHub repository.

Updating an open-source project is very easy. This can be done just fine with the command line. In this example, I am listing the files in a repository. 4.4 Tue Jun 16 jason@Yog-Sothoth 1: $ git ls-tree -r master –name-only LICENSE README.md makefile src/iface.h src/strings.h src/sysinfo.cpp src/sysinfo.h system-info4.4 Tue Jun 16 jason@Yog-Sothoth 1: $ git … Read more

Updating an open-source project is fun.

I have updated my System Information project, I used git to push changes to the repo from my local machine. This is not too hard. Add files to the main branch like this. jason@Yog-Sothoth:~/Documents/sysinfo$ git add src/iface.hjason@Yog-Sothoth:~/Documents/sysinfo$ git add src/iface.h Then push the changes to the repo. jason@Yog-Sothoth:~/Documents/sysinfo$ git push Username for ‘https://github.com’: john302 Password … Read more