• support[@]kurinchilion.com
  • +1 (888) 666-4252

Blog

How to move the atom editor installable file to a different location?

Apr 11, 2017 - by kurinchilamp /Linux Server/ 373 Views
When Atom editor is installed, it creates a symbolic link in /usr/local/bin folder. Get the new folder path where atom editor installable file resides and run the following command in the terminal $ ln -s /NewFolder/Atom.app/Contents/Resources/app/atom.sh /usr/local/bin/atom If a link is already created for the atom editor, then you need to remove the existing symbolic link before creating a new one $ unlink AtomSymbolicLink (OR) $ rm AtomSymbolicLink
Continue Reading

How to open a file in Atom editor from a Mac terminal?

Mar 17, 2017 - by kurinchilamp /Linux Server/ 437 Views
When atom installs, it sets up a symbolic link to the location where it is installed. You can open a file or folder in atom by using the following commands a) Open the editor $ atom b) Open a file $ atom index.html c) Open atom in the current folder $ atom .
Continue Reading

Git: How to reset Develop branch to be in sync with Master branch?

Feb 15, 2017 - by kurinchilamp // 775 Views
First checkout Develop branch $ git checkout dev Then, reset it to Master branch $ git reset --hard master Make sure to push the changes by force to make origin/dev to be the same as origin/master $ git push --force origin develop
Continue Reading

Git error: src refspec master does not match any

Dec 29, 2016 - by kurinchilamp // 410 Views
Point 1) Check if you have followed the below sequence of steps when setting up git in your local workstation $ git init $ git add . $ git commit -am "name of the commit" $ git remote add origin https://github.com/username/repository.git $ git push -u origin master Point 2) Check if .git/config file has the following parameters in it [branch "master"] remote = origin merge = refs/heads/master
Continue Reading

Git: error: RPC failed; curl 55 SSL_write() returned SYSCALL,

Dec 17, 2016 - by kurinchilamp // 596 Views
Git uses "Transfer-encoding" in POST requests and some proxy servers do not support this encoding by default. When large files are pushed, the git client requires higher http.postBuffer setting. Increase the buffer size to see if the issue is related to it. $ git config --global http.postBuffer 134217728
Continue Reading

Git: SSL certificate problem: unable to get local issuer certificate

Dec 16, 2016 - by kurinchilamp // 391 Views
You get this message when the system is behind a firewall and when the security certificates are blocked. There are two ways to overcome this message and to enable a git pull or git clone. i) Issue the below command from git bash $ git config --global http.sslVerify false OR ii) Add http block in "gitconfig" file to avoid ssl verification [http] sslVerify = false sslCAinfo = /bin/curl-ca-bundle.crt
Continue Reading

TECHNOLOGY DEV STACK

Following are some of the technologies that we use to build and maintain solutions for our clients.