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

Tags

Git: How to make a file not to be tracked in future commits?

Oct 01, 2017 - by kurinchilamp / / Post Comment
As a developer, you may come across scenarios when you think that certain SPECIAL files should not be tracked in Git commits. As the first step, commit all changes in your repository and then add those SPECIAL files to .gitignore To remove a file (not delete) from getting tracked in your Git repository use: $ git rm --cached sampleconfig.txt To remove all files that is referenced in your .gitignore use: $ git rm -r --cached . (more…)
Continue Reading

Git: Reset local branch to make it the same as remote branch master

Feb 22, 2017 - by kurinchilamp / / Post Comment
Go to your local repository in bash $ git fetch origin $ git reset --hard origin/master To clean and remove untracked files and directories $ git clean -fdx
Continue Reading

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

Feb 15, 2017 - by kurinchilamp / / Post Comment
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 / / Post Comment
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 / / Post Comment
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 / / Post Comment
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.