Archives
- January 2020
- October 2018
- September 2018
- August 2018
- June 2018
- April 2018
- February 2018
- January 2018
- July 2017
- June 2017
- March 2017
- October 2016
- July 2016
- September 2015
- August 2015
- February 2015
- October 2014
- September 2014
- August 2014
- June 2014
- May 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
Meta
Categories
- add
- admob
- algorithm
- android
- app
- App Idea
- beagleboard xm
- BigQuery
- broken
- C++
- cakephp
- case-sensitive
- clone
- codeigniter
- coding
- composer
- coursera
- cross compile
- crosstool
- dbus
- default value
- dependency injection
- diff
- eclipse
- emulator
- error
- file
- forbidden
- fragment
- gdb
- git
- gitolite
- google maps
- inorder
- install
- interview
- java
- jQuery
- link
- linux
- marakana
- mongodb
- NFS
- not working
- php
- preferences
- preorder
- process
- pulseaudio
- push
- qnx
- qt
- rails
- refactored
- reference
- relink
- remote
- ruby
- ruby on rails
- ruby on rails tutorial
- server
- service
- singleton
- svn
- TDD
- topcoder
- tortoisesvn
- troubleshooting
- ubuntu
- UI properties
- undefined
- user
- v3
- virtualbox
- zend
Top Clicks
- None
Category Archives: Git
Git Config Tips
To use co in place of the more verbose checkout command: $ git config –global alias.co checkout Set the editor Git will use for commit messages. If you use a graphical editor such as Sublime Text, TextMate, gVim, or … Continue reading
Git: Tagging and pushing to remote
I’ve had to look this up a couple times. Annonated Tag git tag -a [tagname] -m ‘MESSAGE’ To Push to Server git push origin [tagname] Annotated tags, however, are stored as full objects in the Git database. They’re checksummed; contain … Continue reading
Git: git push -> No refs in common and none specified; doing nothing
If you see the error message, No refs in common and none specified; doing nothing Perhaps you should specify a branch such as ‘master’. fatal: The remote end hung up unexpectedly It is probably because you cloned an empty repository … Continue reading
Gitolite: Log all access? Not Possible
In short, Gitolite is not able to log a clone or fetch access. https://groups.google.com/forum/?hl=en&fromgroups=#!topic/gitolite/g7mO2VDQza0 There is a workaround that may work courtesy of Sandeep Kaira. His email to me after I posted on the gitolite newsgroup: I noticed that SSL … Continue reading
Gitolite: add new repository
I enable certain users to create repositories by adding this to gitolite.conf file: repo [a-zA-Z0-9].* C = @admin @staff RW+ = CREATOR RW = WRITERS @admin R = READERS @staff To create a new repo I had to do this: … Continue reading
Posted in Git
Tagged add, fatal, git, gitolite, new, no destination configured to push to
3 Comments
Gitolite: add users and multipe keys per user
Figuring out why I was having trouble adding a user was pretty upsetting so I will share the experience and hope no one else runs into it also. Create the ssh key for user ssh-keygen -t rsa Do no try … Continue reading
Gitolite v3 – add email hook
I added the email hook by changing files on the git server. gitolite@gitserver~$ cd .gitolite/hooks/common gitolite@gitserver:~/.gitolite/hooks/common$ cp /usr/share/doc/git/contrib/hooks/post-receive-email post-receive gitolite@gitserver:~/.gitolite/hooks/common$ $HOME/bin/gitolite setup –hooks-only gitolite@gitserver:~/.gitolite/hooks/common$ cd gitolite@gitserver:~$ vi .gitolite.rc #GIT_CONFIG_KEYS => ”, # ORIGINAL GIT_CONFIG_KEYS => ‘.*’, # EDIT TO THIS … Continue reading
Install a Git Server Gitolite v3
Looking into installing our own Git Server. Probably going with Gitolite. Did a test run on my dev Linux box got environment setup, but having some trouble adding users and initial repository. Company gave me a Windows server to working. … Continue reading
Git, a VCS
Noticed that Git is the new king of VCS . Downloaded Git and installed it and going through the manual. http://progit.org/book/ch1-3.html The KEY difference with Git is that most operations are local. Operations like diff ing between previous version of … Continue reading
Posted in Git
Leave a comment