error: The requested URL returned error: 403 Forbidden while accessing Github repo
|

error: The requested URL returned error: 403 Forbidden while accessing Github repo

After a long time I created a repo on my Github account.Creating a repo is quite easy on Github, simply login to your account and click on ‘create repo’ button. After creating git repo, now it was time to push all my codes from my desktop to github repo. After cloning the repo into my…

Install and upgrade to latest Git version on Ubuntu/Debian/Linux Mint
|

Install and upgrade to latest Git version on Ubuntu/Debian/Linux Mint

In this tutorial we will learn,how to install and upgrade to latest Git version on Debian based Operating System.At the time of writing this post,git version 1.9.1 has been released on 2014-03-18. The information of new Git version release can be obtained from git-scm.com The practical has been tested successfully in Ubuntu,Debian and Linux Mint….

error: src refspec master does not match any

error: src refspec master does not match any

While working in Github,I was trying to push my code in my Github repository.After deleting all files from repo,I tried to push the new code.But I encounter with given below Error: error: src refspec master does not match any. error: failed to push some refs to ‘https://github.com/sharadchhetri/sharadchhetri.github.io’ To solve this error,run the below given command…

How to install own git server with ssh and http access by using gitolite and gitweb in CentOS
| | |

How to install own git server with ssh and http access by using gitolite and gitweb in CentOS

In this tutorial we will learn about,how to install own git server with ssh and http access by using gitolite and gitweb in CentOS.For user management in Git Server,we will use the Gitolite.For showing the repository list on web interface,we will use Gitweb. And Smart HTTP is configured in Apache, to access the Git server…

How to create own Git Server with Gitolite and Gitweb in Ubuntu
| | |

How to create own Git Server with Gitolite and Gitweb in Ubuntu

In this tutorial we will learn how to create own git server.This time I have selected Gitolite for git server and gitweb to display git repositories. Why Gitolite ? Answer: Easy to setup,have user management through command line,very less memory and cpu usage. Why Gitweb? Answer: To display repositories in web interface and view can…