github picture path

You’re expected to use an absolute path to a http accessible image ![Alt desc](http://www.example.com/image.png) If you’re willing to link against your own repository, you should use the raw url format. For instance, the following markdown ![logo](https://github.com/libgit2/libgit2sharp/raw/master/square-logo.png) should display the following image Note: An alternate raw format is also supported. The image above can also be … Read more

Merge conflict in .gitignore

You edited the .gitignore in both branches. Now, git is unsure of which lines in each copy are the correct ones so it is asking you to resolve them. The lines: <<<<<<< HEAD public/img/ignore ======= Are what appears in the copy of the file in master. And ======= public/img/profiles public/blog public/recommendation >>>>>>> newfeature in the … Read more

How to remove a file from being tracked by git? [duplicate]

remove the file from tracking: git rm –cached config-dev.php && git commit -m “config-dev.php” add it to the .gitignore echo config-dev.php >> .gitignore git add .gitignore git commit -m “adding config-dev.php to .gitignore” Publish these changes git push On your colleagues machine fetch the new configuration git pull Done When your other dev gets errors … Read more

How to deploy to github with file pattern on travis?

Wildcards are supported by now if you enable the file_glob option. This is how I deploy a build .deb file to GitHub releases: before_deploy: – export RELEASE_PKG_FILE=$(ls *.deb) – echo “deploying $RELEASE_PKG_FILE to GitHub releases” deploy: provider: releases api_key: secure: YOUR_ENCRYPTED_API_KEY file_glob: true file: “${RELEASE_PKG_FILE}” on: tags: true Setting up is easy by executing travis … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)