Skip to content

Instantly share code, notes, and snippets.

View eladmoshe's full-sized avatar

Elad Moshe eladmoshe

  • Lemonade
  • Israel
View GitHub Profile
console.log("hello world");
@eladmoshe
eladmoshe / link-certificate.sh
Last active June 8, 2020 21:20
Script for linking a working certificate to create-react-app. Allows you to work with create-react-app and valid SSL certificate.
@eladmoshe
eladmoshe / test.js
Created December 5, 2012 11:35
test gist
updateBranch = function(repositoryDirectory, branchName, callback) {
git.checkout(repositoryDirectory, branchName, true, function(err) {
if (err) {
errorHandler.callError(err, callback);
return;
}
git.pull(repositoryDirectory, "origin", branchName, function(err) {
if (err) {
errorHandler.callError(err, callback);
return;