Posts

Showing posts with the label Github

Git force redownload from remote repository

Tutorial git reset --hard origin/ git fetch --all Example from master git reset --hard origin/master git fetch --all

Fix add file to gitignore not filtered

git rm -r --cached . git add . git commit -m 'clear git cache' git push

How to make pull request or contribution on github

Contribution Tutorial Fork it (git clone https://github.com/name/repo) Create your feature branch (git checkout -b my-new-feature) Commit your changes (git commit -am 'Add some feature') Push to the branch (git push origin my-new-feature) Create new Pull Request